aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces/web/templates/list.html
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-07-15 06:38:56 -0400
committerW. Trevor King <wking@drexel.edu>2010-07-15 06:38:56 -0400
commit790a33a51a6281535cae338c9f64a675bb6dc6b5 (patch)
tree75b96c1412bb5f6100a9927b0aaf748c410ed246 /interfaces/web/templates/list.html
parent3472f94db6fda30ab53c5f1b747095fad1ac3c3b (diff)
downloadbugseverywhere-790a33a51a6281535cae338c9f64a675bb6dc6b5.tar.gz
Fixed #bea/206d9b07# : 'BugDir' object has no attribute 'bug_shortname' (cfbe)
Tested with a single bug attribute change and comment addition.
Diffstat (limited to 'interfaces/web/templates/list.html')
-rw-r--r--interfaces/web/templates/list.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces/web/templates/list.html b/interfaces/web/templates/list.html
index 83007d3..216b731 100644
--- a/interfaces/web/templates/list.html
+++ b/interfaces/web/templates/list.html
@@ -16,7 +16,7 @@
{% for bug in bugs %}
<tr>
<td>{{ bug.id.user() }}</td>
- <td><a href="/bug?id={{ bug.id.user() }}">
+ <td><a href="/bug?{{ urlencode({'id':bug.id.long_user()}) }}">
{{ bug.summary|e|truncate(70) }}</a></td>
<td>{{ bug.status }}</td>
<td>{{ bug.target }}</td>