diff options
author | Steve Losh <steve@stevelosh.com> | 2009-01-30 23:53:09 -0500 |
---|---|---|
committer | Steve Losh <steve@stevelosh.com> | 2009-01-30 23:53:09 -0500 |
commit | 120720baf3ce09aacaddb82c0937af596aea62fe (patch) | |
tree | b65903b7b98883114b72efda855aebec6f51d19c /templates/list.html | |
parent | 012817b8ed9c47354fe3b1e7657b82bcda4e77a4 (diff) | |
download | bugseverywhere-120720baf3ce09aacaddb82c0937af596aea62fe.tar.gz |
Implemented the status filter.
Diffstat (limited to 'templates/list.html')
-rw-r--r-- | templates/list.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/list.html b/templates/list.html index 34e28d3..3dd4a70 100644 --- a/templates/list.html +++ b/templates/list.html @@ -10,13 +10,15 @@ <th>ID</th> <th>Summary</th> <th>Status</th> + <th>Target</th> <th>Assigned To</th> </tr> {% for bug in bugs %} <tr> <td>{{ bd.bug_shortname(bug) }}</td> - <td>{{ bug.summary|e|truncate(60) }}</td> + <td>{{ bug.summary|e|truncate(65) }}</td> <td>{{ bug.status }}</td> + <td>{{ bug.target }}</td> <td>{{ bug.assigned|striptags }}</td> </tr> {% endfor %} |