summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDexter Morgan <dmorgan@mageia.org>2011-02-19 00:06:59 +0000
committerColin Guthrie <colin@mageia.org>2014-09-15 20:44:40 +0100
commit677ca493285e7b111045d43a8931a88106974c34 (patch)
tree446e3bae4dcfbf3de6bece73e3725879107921c6
parent02493c95fa0f86c31906e3d4a6fee4aea9656fcb (diff)
downloadbugzilla-677ca493285e7b111045d43a8931a88106974c34.tar
bugzilla-677ca493285e7b111045d43a8931a88106974c34.tar.gz
bugzilla-677ca493285e7b111045d43a8931a88106974c34.tar.bz2
bugzilla-677ca493285e7b111045d43a8931a88106974c34.tar.xz
bugzilla-677ca493285e7b111045d43a8931a88106974c34.zip
Fix Layout by putting the "comment box" after the comments Add branch for told templates and future ones
-rw-r--r--template/en/default/bug/edit.html.tmpl21
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>
[%############################################################################%]