aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--template/en/default/bug/edit.html.tmpl23
1 files changed, 14 insertions, 9 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index b8abe6bc5..1e10d38e8 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -329,20 +329,25 @@
[%# Importance (priority and severity) #%]
[%###############################################################%]
<tr>
- <th class="field_label">
- [% can_edit_priority = bug.check_can_change_field('priority', 0, 1) %]
- <label [% IF can_edit_priority %]for="priority"[% END %] accesskey="i">
- <a href="page.cgi?id=fields.html#importance"><u>I</u>mportance</a></label>:
- </th>
- <td>
- [% INCLUDE bug/field.html.tmpl
+ [% can_edit_priority = bug.check_can_change_field('priority', 0, 1) %]
+ [% INCLUDE "bug/field-label.html.tmpl"
+ field = bug_fields.priority
+ editable = can_edit_priority
+ %]
+ <td class="field_value">
+ [% INCLUDE bug/field.html.tmpl
bug = bug, field = bug_fields.priority,
no_tds = 1, value = bug.priority
editable = can_edit_priority %]
- [%+ INCLUDE bug/field.html.tmpl
+
+ [% can_edit_severity = bug.check_can_change_field('bug_severity', 0, 1) %]
+ <label [% IF can_edit_severity %]for="bug_severity"[% END %] class="field_label">
+ <a href="page.cgi?id=fields.html#bug_severity" class="field_help_link"
+ title="[% help_html.bug_severity FILTER txt FILTER collapse FILTER html %]">Severity</a>:</label>
+ [%+ INCLUDE bug/field.html.tmpl
bug = bug, field = bug_fields.bug_severity,
no_tds = 1, value = bug.bug_severity
- editable = bug.check_can_change_field('bug_severity', 0, 1) %]
+ editable = can_edit_severity %]
[% Hook.process('after_importance', 'bug/edit.html.tmpl') %]
</td>
</tr>