diff options
author | guy.pyrzak%gmail.com <> | 2008-05-20 23:49:37 +0200 |
---|---|---|
committer | guy.pyrzak%gmail.com <> | 2008-05-20 23:49:37 +0200 |
commit | 6fefb57dd132357e79316bfdddb4983ce8f70220 (patch) | |
tree | 90f8e2c60d4eb1356768c81faa7749dcd0856b76 /template/en/default | |
parent | 78ab4257b5b3c8a774f9d8af701c1d89f493f518 (diff) | |
download | bugzilla-6fefb57dd132357e79316bfdddb4983ce8f70220.tar.gz bugzilla-6fefb57dd132357e79316bfdddb4983ce8f70220.tar.xz |
Bug 430989 â Status should probably be at the top of show_bug.cgi
Patch by Guy Pyrzak, review=LpSolit a=LpSolit
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index e1f0600bb..7caed087b 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -151,6 +151,10 @@ <td id="bz_show_bug_column_1" class="bz_show_bug_column"> <table> [%# *** ID, product, component, status, resolution, Hardware, and OS *** %] + [% PROCESS section_status %] + + [% PROCESS section_spacer %] + [% PROCESS section_details1 %] [% PROCESS section_spacer %] @@ -395,22 +399,26 @@ [% END %] [%############################################################################%] +[%# Block for the status section #%] +[%############################################################################%] + +[% BLOCK section_status %] + <tr> + <td class="field_label"> + <b><a href="page.cgi?id=fields.html#status">Status</a></b>: + </td> + <td id="bz_field_status"> + [% PROCESS bug/knob.html.tmpl %] + </td> + </tr> +[% END %] + +[%############################################################################%] [%# Block for the second table in the "Details" section #%] [%############################################################################%] [% BLOCK section_details2 %] -[%############%] -[%# STATUS #%] -[%############%] - <tr> - <td class="field_label"> - <b><a href="page.cgi?id=fields.html#status">Status</a></b>: - </td> - <td id="bz_field_status"> - [% PROCESS bug/knob.html.tmpl %] - </td> - </tr> [%###############################################################%] [%# Importance (priority, severity and votes) #%] [%###############################################################%] |