diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-08-11 22:08:16 +0200 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-08-11 22:08:16 +0200 |
commit | f30b939630917a63bc733e3963869643eeccdc90 (patch) | |
tree | cbba2f3c7d12b591fb4a27d288f135ac66930dad /extensions/BMO/template/en/default/hook | |
parent | 1f30fac936a3b0905e736dd86e559e33caf036ac (diff) | |
download | bugzilla-f30b939630917a63bc733e3963869643eeccdc90.tar.gz bugzilla-f30b939630917a63bc733e3963869643eeccdc90.tar.xz |
Bug 655522 - Severity values no longer defined in fields.html
Diffstat (limited to 'extensions/BMO/template/en/default/hook')
-rw-r--r-- | extensions/BMO/template/en/default/hook/bug/field-help-end.none.tmpl | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/extensions/BMO/template/en/default/hook/bug/field-help-end.none.tmpl b/extensions/BMO/template/en/default/hook/bug/field-help-end.none.tmpl index d95d1b606..70132d7e0 100644 --- a/extensions/BMO/template/en/default/hook/bug/field-help-end.none.tmpl +++ b/extensions/BMO/template/en/default/hook/bug/field-help-end.none.tmpl @@ -18,7 +18,8 @@ # Dave Lawrence <dkl@mozilla.com> #%] -[% IF fields_page %] +[% USE Bugzilla %] +[% IF Bugzilla.request_cache.bmo_fields_page %] [% filtered_severity_blocker = display_value("bug_severity", "blocker") FILTER html %] [% filtered_severity_critical = display_value("bug_severity", "critical") FILTER html %] [% filtered_severity_major = display_value("bug_severity", "major") FILTER html %] @@ -26,27 +27,27 @@ [% filtered_severity_minor = display_value("bug_severity", "minor") FILTER html %] [% filtered_severity_trivial = display_value("bug_severity", "trivial") FILTER html %] [% filtered_severity_enhancement = display_value("bug_severity", "enhancement") FILTER html %] - + [% filtered_platform_all = display_value("rep_platform", "All") FILTER html %] [% filtered_platform_x86_64 = display_value("rep_platform", "x86_64") FILTER html %] [% filtered_platform_arm = display_value("rep_platform", "ARM") FILTER html %] - + [% filtered_opsys_all = display_value("op_sys", "All") FILTER html %] [% filtered_opsys_windows = display_value("op_sys", "Windows 7") FILTER html %] [% filtered_opsys_mac = display_value("op_sys", "Mac OS X") FILTER html %] [% filtered_opsys_linux = display_value("op_sys", "Linux") FILTER html %] - + [% filtered_status_new = display_value("bug_status", "NEW") FILTER html %] - + [% - help_html.priority = + vars.help_html.priority = "This field describes the importance and order in which $terms.abug should be fixed compared to other ${terms.bugs}. This field is utilized by the programmers/engineers to prioritize their work to be done." - - help_html.bug_severity = + + vars.help_html.bug_severity = "This field describes the impact of ${terms.abug}. - <table> + <table> <tr> <th>$filtered_severity_blocker</th> <td>Blocks development and/or testing work</td> @@ -77,8 +78,8 @@ <th>$filtered_severity_enhancement</th> <td>Request for enhancement</td> </table>" - - help_html.rep_platform = + + vars.help_html.rep_platform = "This is the hardware platform against which the $terms.bug was reported. Legal platforms include: <ul> @@ -91,8 +92,8 @@ select $terms.bugs assigned against any platform. It merely selects $terms.bugs that are marked as occurring on all platforms, i.e. are designated <em>$filtered_platform_all</em>.", - - help_html.op_sys = + + vars.help_html.op_sys = "This is the operating system against which the $terms.bug was reported. Legal operating systems include: <ul> @@ -103,8 +104,8 @@ </ul> Sometimes the operating system implies the platform, but not always. For example, Linux can run on x86_64, ARM, and others.", - - help_html.assigned_to = + + vars.help_html.assigned_to = "This is the person in charge of resolving the ${terms.bug}. Every time this field changes, the status changes to <b>$filtered_status_new</b> to make it |