aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
diff options
context:
space:
mode:
authorSteve Losh <steve@stevelosh.com>2009-01-30 21:45:15 -0500
committerSteve Losh <steve@stevelosh.com>2009-01-30 21:45:15 -0500
commit4cd9b7a520a4902267be73b03b24435ab2923d26 (patch)
treebf00c6959a36ffb41112655f5a3a9e43431f10e3 /templates/list.html
parent4096632287d468c98d7f808079a3f877e7f55fda (diff)
downloadbugseverywhere-4cd9b7a520a4902267be73b03b24435ab2923d26.tar.gz
Made it prettier, and added assignee filters.
Diffstat (limited to 'templates/list.html')
-rw-r--r--templates/list.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/list.html b/templates/list.html
index 34e3169..34e28d3 100644
--- a/templates/list.html
+++ b/templates/list.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block page_title %}
- {{ label }} Bugs
+ {{ label }}
{% endblock %}
{% block content %}
@@ -15,9 +15,9 @@
{% for bug in bugs %}
<tr>
<td>{{ bd.bug_shortname(bug) }}</td>
- <td>{{ bug.summary }}</td>
+ <td>{{ bug.summary|e|truncate(60) }}</td>
<td>{{ bug.status }}</td>
- <td>{{ bug.assigned }}</td>
+ <td>{{ bug.assigned|striptags }}</td>
</tr>
{% endfor %}
</table>