diff options
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index e53e1caaf..ea526cd23 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -403,6 +403,19 @@ </tr> [% END %] + [%# *** Custom Fields *** %] + + [% USE Bugzilla %] + [% fields = Bugzilla.get_fields({ obsolete => 0, custom => 1 }) %] + [% IF fields %] + [% FOREACH field = fields %] + <tr> + [% PROCESS bug/field.html.tmpl value=bug.${field.name} + editable=1 %] + </tr> + [% END %] + [% END %] + </table> </td> @@ -494,20 +507,6 @@ </table> [% END %] -[%# *** Custom Fields *** %] - -[% USE Bugzilla %] -[% fields = Bugzilla.get_fields({ obsolete => 0, custom => 1 }) %] -[% IF fields %] - <table> - [% FOREACH field = fields %] - <tr> - [% PROCESS bug/field.html.tmpl value=bug.${field.name} editable=1 %] - </tr> - [% END %] - </table> -[% END %] - [%# *** Attachments *** %] [% PROCESS attachment/list.html.tmpl |