diff options
author | Steve Losh <steve@stevelosh.com> | 2009-01-30 21:45:15 -0500 |
---|---|---|
committer | Steve Losh <steve@stevelosh.com> | 2009-01-30 21:45:15 -0500 |
commit | 4cd9b7a520a4902267be73b03b24435ab2923d26 (patch) | |
tree | bf00c6959a36ffb41112655f5a3a9e43431f10e3 /templates/list.html | |
parent | 4096632287d468c98d7f808079a3f877e7f55fda (diff) | |
download | bugseverywhere-4cd9b7a520a4902267be73b03b24435ab2923d26.tar.gz |
Made it prettier, and added assignee filters.
Diffstat (limited to 'templates/list.html')
-rw-r--r-- | templates/list.html | 6 |
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> |