diff options
Diffstat (limited to 'extensions/MozProjectReview')
3 files changed, 18 insertions, 1 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 802caeee9..9856736d1 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 @@ -14,6 +14,7 @@ Legal Questions: Priority: [% cgi.param('legal_priority') %] +Time Frame For Completion of Legal Portion?: [% cgi.param('legal_timeframe') %] Other Party: [% cgi.param('legal_other_party') %] What help do you need from Legal?: [%+ cgi.param('legal_help_from_legal') %] 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 1764ade6e..9397e809d 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 @@ -417,6 +417,21 @@ </span> </div> + <div id="legal_timeframe_row" class="field_row"> + <span class="field_label required">Time Frame For Completion<br>of Legal Portion?:</span> + <span class="field_data"> + <div class="field_description">What is the desired time frame to have the legal component/involvement completed.</div> + <select name="legal_timeframe" id="legal_timeframe"> + <option value="2 days">2 days</option> + <option value="a week">a week</option> + <option value="2-4 weeks">2-4 weeks</option> + <option value="will take a while but please start soon"> + will take a while but please start soon</option> + <option value="no rush" selected>no rush</option> + </select> + </span> + </div> + <div id="legal_cc_row" class="field_row"> <span class="field_label">Cc:</span> <span class="field_data"> diff --git a/extensions/MozProjectReview/web/js/moz_project_review.js b/extensions/MozProjectReview/web/js/moz_project_review.js index 5b217a800..18610aaf4 100644 --- a/extensions/MozProjectReview/web/js/moz_project_review.js +++ b/extensions/MozProjectReview/web/js/moz_project_review.js @@ -30,7 +30,8 @@ var MPR = { "finance_purchase_cost": "Please enter a value for total cost in the finance questions section" }, "legal_questions": { - "legal_priority": "Please select a priority for the legal questions section", + "legal_priority": "Please select a value for priority in the legal questions section", + "legal_timeframe": "Please select a value for timeframe in the legal questions section", "legal_help_from_legal": "Please describe the help needed from the Legal department" }, "legal_sow_questions": { |