diff options
author | David Lawrence <dkl@mozilla.com> | 2015-02-27 17:42:55 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-02-27 17:42:55 +0100 |
commit | a428a8601568468c8237afb2e3272e0477f7d26c (patch) | |
tree | e285b99b9ed28f3d2ca336f4dfa443c40064f6ed /extensions/BMO | |
parent | 57ac7e0a1ff5e29e0b90eccf59e8a79d322165c7 (diff) | |
download | bugzilla-a428a8601568468c8237afb2e3272e0477f7d26c.tar.gz bugzilla-a428a8601568468c8237afb2e3272e0477f7d26c.tar.xz |
Bug 1136979: Minor Brand Initiation Form Updates
Diffstat (limited to 'extensions/BMO')
-rw-r--r-- | extensions/BMO/template/en/default/bug/create/comment-creative.txt.tmpl | 5 | ||||
-rw-r--r-- | extensions/BMO/template/en/default/bug/create/create-creative.html.tmpl | 27 |
2 files changed, 7 insertions, 25 deletions
diff --git a/extensions/BMO/template/en/default/bug/create/comment-creative.txt.tmpl b/extensions/BMO/template/en/default/bug/create/comment-creative.txt.tmpl index 8187e4a51..203e28ece 100644 --- a/extensions/BMO/template/en/default/bug/create/comment-creative.txt.tmpl +++ b/extensions/BMO/template/en/default/bug/create/comment-creative.txt.tmpl @@ -26,10 +26,7 @@ Other: [% IF cgi.param('type_other') %][% cgi.param('type_other_text') %][% EL >>CTA and Design: [%+ cgi.param('cta_design') %] ->>Creative Due Date: -[%+ cgi.param("cf_due_date") || 'Not provided' %] - ->>Launch Date: +>>Expected Launch Date: [%+ cgi.param("launch_date") || 'Not provided' %] >>Mozilla Goal: diff --git a/extensions/BMO/template/en/default/bug/create/create-creative.html.tmpl b/extensions/BMO/template/en/default/bug/create/create-creative.html.tmpl index 81e833f56..56614f926 100644 --- a/extensions/BMO/template/en/default/bug/create/create-creative.html.tmpl +++ b/extensions/BMO/template/en/default/bug/create/create-creative.html.tmpl @@ -56,7 +56,7 @@ function validateAndSubmit() { if (!isFilledOut('short_desc')) alert_text += 'Please enter a value for Request Title.\n'; if (!isFilledOut('specs')) alert_text += 'Please enter a value for Creative Specs.\n'; if (!isFilledOut('cta_design')) alert_text += 'Please enter a value for CTA Design.\n'; - if (!isFilledOut('cf_due_date')) alert_text += 'Please enter a value for the creative due date.\n'; + if (!isFilledOut('launch_date')) alert_text += 'Please enter a value for the expected launch date.\n'; if (!isFilledOut('goal')) alert_text += 'Please select a value for Mozilla Goal.\n'; if (YAHOO.util.Dom.get('goal').value == 'Other') { if (!isFilledOut('goal_other')) alert_text += 'Please select a value for Mozilla Goal Other.\n'; @@ -195,27 +195,12 @@ function toggleTypeOther(element) { </div> <div class="form_section"> - <label for="cf_due_date" class="field_label required">Creative Due Date</label> + <label for="launch_date" class="field_label required"> + Expected Launch Date + </label> <div class="field_desc"> - Working backwards from your launch/go-live date, when do you need final assets? - </div> - <input name="cf_due_date" size="20" id="cf_due_date" value="" - onchange="updateCalendarFromField(this)"> - <button type="button" class="calendar_button" - id="button_calendar_cf_due_date" - onclick="showCalendar('cf_due_date')"> - <span>Calendar</span> - </button> - <div id="con_calendar_cf_due_date"></div> - <script type="text/javascript"> - createCalendar('cf_due_date') - </script> -</div> - -<div class="form_section"> - <label for="launch_date" class="field_label">Launch Date</label> - <div class="field_desc"> - When will your project go forth into the world? + When do you anticipate your project launching? We will determine a creative + due date with you based on this to ensure that it works for everyone. </div> <input name="launch_date" size="20" id="launch_date" value="" onchange="updateCalendarFromField(this)"> |