aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/html.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@tremily.us>2012-09-17 09:25:07 -0400
committerW. Trevor King <wking@tremily.us>2012-09-17 09:27:58 -0400
commit99373a9f5abc16e4eae021b0feaf33a1d26ce476 (patch)
treefa305e191b23b5c29be76d1619292dc7070f8410 /libbe/command/html.py
parent0dce72cb7c6e043fd4e1d59145417de10a8937ee (diff)
downloadbugseverywhere-99373a9f5abc16e4eae021b0feaf33a1d26ce476.tar.gz
command.html: display "Target:" detail for bugs with targets.
Diffstat (limited to 'libbe/command/html.py')
-rw-r--r--libbe/command/html.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/libbe/command/html.py b/libbe/command/html.py
index eaf5f1d..88761fe 100644
--- a/libbe/command/html.py
+++ b/libbe/command/html.py
@@ -34,6 +34,7 @@ from jinja2 import Environment, FileSystemLoader, DictLoader, ChoiceLoader
import libbe
import libbe.command
import libbe.command.depend
+import libbe.command.target
import libbe.command.util
import libbe.comment
import libbe.util.encoding
@@ -146,6 +147,9 @@ class ServerApp (libbe.util.wsgi.WSGI_AppObject,
index_type = 'active'
else:
index_type = 'inactive'
+ target = libbe.command.target.bug_target(self.bugdirs, bug)
+ if target == bug: # e.g. when bug.severity == 'target'
+ target = None
up_link = '../../{}?type={}'.format(self._index_file, index_type)
bug.load_comments(load_full=True)
bug.comment_root.sort(cmp=libbe.comment.cmp_time, reverse=True)
@@ -159,10 +163,12 @@ class ServerApp (libbe.util.wsgi.WSGI_AppObject,
'index_type': index_type.capitalize(),
'index_file': self._index_file,
'bug': bug,
+ 'target': target,
'comment_entry': self.template.get_template(
'bug_comment_entry.html'),
'comments': [(depth,comment) for depth,comment
in bug.comment_root.thread(flatten=False)],
+ 'bug_dir': self.bug_dir,
'comment_dir': self._truncated_comment_id,
'format_body': self._format_comment_body,
'div_close': _DivCloser(),
@@ -677,6 +683,10 @@ div.root.comment {
<td class="bug_detail">{{ strip_email(bug.creator or '')|e }}</td></tr>
<tr><td class="bug_detail_label">Created :</td>
<td class="bug_detail">{{ (bug.time_string or '')|e }}</td></tr>
+{% if target %}
+ <tr><td class="bug_detail_label">Target :</td>
+ <td class="bug_detail"><a href="../../{{ bug_dir(target) }}/{{ index_file }}">{{ target.summary }}</a></td></tr>
+{% endif %}
<tr><td class="bug_detail_label">Summary :</td>
<td class="bug_detail">{{ bug.summary|e }}</td></tr>
</tbody>