diff options
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 8544147..e8c05a1 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -211,11 +211,17 @@ </tr> </table> + [%# *** Additional Comments *** %] + <div id="comments"> + [% PROCESS bug/comments.html.tmpl + comments = bug.comments + mode = user.id ? "edit" : "show" + %] + </div> <table id="bz_big_form_parts" cellspacing="0" cellpadding="0"><tr> <td> - [% IF user.is_timetracker %] - [% PROCESS section_timetracking %] - [% END %] + + [% PROCESS comment_box %] [%# *** Attachments *** %] @@ -226,21 +232,12 @@ show_attachment_flags = bug.show_attachment_flags %] - [% PROCESS comment_box %] </td> <td> [% PROCESS section_restrict_visibility %] </td> </tr></table> - [%# *** Additional Comments *** %] - <div id="comments"> - [% PROCESS bug/comments.html.tmpl - comments = bug.comments - mode = user.id ? "edit" : "show" - %] - </div> - </form> [%############################################################################%] |