changeset 118:9fd31c1b495f draft

Move the tag box to the bottom of the bug
author marga
date Tue, 28 Jul 2009 22:29:23 +0000
parents 2417a0ecc73d
children 280ea98b1706
files bts_webui/amancay/templates/bug.html
diffstat 1 files changed, 7 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/bts_webui/amancay/templates/bug.html
+++ b/bts_webui/amancay/templates/bug.html
@@ -19,16 +19,14 @@
 			Found in: {{ bug_status.found_versions|join:", " }}
 		{% endif %}
 	</div>
-	{% load bug_tags %}
-	{% bug_tags_selector %}
-	<br/><br/>
+	<br/>
 {% if bug_messages %}
 	{% for message in bug_messages %}
 		{% if forloop.first %}
 		<div class="bug_log_item bug_log_item_reporter">
 			<div class="bug_log_header">
 				{% if message.from.0 %}
-				<span class="bug_log_from">reported by <a href="mailto:{{ message.from.1 }}">{{ message.from.0 }}</a></span>
+				<span class="bug_log_from">Reported by <a href="mailto:{{ message.from.1 }}">{{ message.from.0 }}</a></span>
 				<span class="bug_log_date">{{ message.date|tstodatetime|timesince }} ago ({{ message.date|tstodate }})</span>
 				{% endif %}
 			</div>
@@ -53,6 +51,11 @@
 		</div>
 		{% endif %}
 	{% endfor %}
+
+	{% load bug_tags %}
+	{% bug_tags_selector %}
+	<br/>
+
 	{% include "bug_actions.html" %}
 	{% include "bug_forms.html" %}
 {% endif %}