diff options
Diffstat (limited to 'extensions/MozProjectReview/template')
2 files changed, 10 insertions, 9 deletions
diff --git a/extensions/MozProjectReview/template/en/default/bug/create/comment-moz-project-review-legal.txt.tmpl b/extensions/MozProjectReview/template/en/default/bug/create/comment-moz-project-review-legal.txt.tmpl index a6a8b303f..802caeee9 100644 --- a/extensions/MozProjectReview/template/en/default/bug/create/comment-moz-project-review-legal.txt.tmpl +++ b/extensions/MozProjectReview/template/en/default/bug/create/comment-moz-project-review-legal.txt.tmpl @@ -15,8 +15,8 @@ Legal Questions: Priority: [% cgi.param('legal_priority') %] Other Party: [% cgi.param('legal_other_party') %] -Business Objective: [% cgi.param('legal_business_objective') %] -URL: [% cgi.param('legal_url') %] +What help do you need from Legal?: +[%+ cgi.param('legal_help_from_legal') %] [% IF cgi.param('legal_vendor_services_where') %] Vendor Services from Where: [% IF cgi.param('legal_vendor_services_where') == 'A single country' %] @@ -25,8 +25,6 @@ Vendor Services from Where: [%- cgi.param('legal_vendor_services_where') %] [% END %] [% END %] -Description: -[%+ cgi.param('legal_description') %] [% IF cgi.param('separate_party') == 'Yes' && cgi.param('relationship_type') == 'Vendor/Services' %] SOW Details: Legal Vendor Name: [% cgi.param('legal_sow_vendor_name') %] diff --git a/extensions/MozProjectReview/template/en/default/bug/create/create-moz-project-review.html.tmpl b/extensions/MozProjectReview/template/en/default/bug/create/create-moz-project-review.html.tmpl index a1015c168..251f26c6d 100644 --- a/extensions/MozProjectReview/template/en/default/bug/create/create-moz-project-review.html.tmpl +++ b/extensions/MozProjectReview/template/en/default/bug/create/create-moz-project-review.html.tmpl @@ -260,8 +260,9 @@ onchange="MPR.toggleVisibleById(this, 'Vendor/Services', 'legal_sow_questions'); MPR.toggleVisibleById(this, 'Vendor/Services', 'legal_vendor_services_where_row'); MPR.toggleVisibleById(this, 'Hardware Purchase', 'finance_questions'); - if (this.value == 'Hardware Purchase') Dom.addClass('legal_questions', 'bz_default_hidden'); - else if (Dom.get('separate_party').value == 'Yes' || Dom.get('mozilla_data').value == 'Yes') + if (this.value == 'Hardware Purchase' && Dom.get('mozilla_data').value != 'Yes') + Dom.addClass('legal_questions', 'bz_default_hidden'); + else if (Dom.get('separate_party').value == 'Yes') Dom.removeClass('legal_questions', 'bz_default_hidden');"> <option value="">Select One</option> <option value="Vendor/Services">Vendor/Services</option> @@ -513,10 +514,12 @@ </span> </div> - <div id="legal_business_objective_row" class="field_row"> - <span class="field_label">Business Objective:</span> + <div id="legal_help_from_legal_row" class="field_row"> + <span class="field_label required">What help do you<br>need from Legal?</span> <span class="field_data"> - <textarea name="legal_business_objective" id="legal_business_objective" rows="10" cols="80"></textarea> + <div class="field_description"> + Please explain specifically what help you need from Legal. If none, put "No Legal help needed."</div> + <textarea name="legal_help_from_legal" id="legal_help_from_legal" rows="10" cols="80"></textarea> </span> </div> |