diff options
author | Steve Losh <steve@stevelosh.com> | 2009-01-30 18:39:11 -0500 |
---|---|---|
committer | Steve Losh <steve@stevelosh.com> | 2009-01-30 18:39:11 -0500 |
commit | 6a019eea492e6de184e487d41c5fb35049eced9b (patch) | |
tree | 8072442b5ebff5aa6069f2be6052dd70437a3c63 /templates/list.html | |
parent | 56ea256123ddee86d517cc5904c6898a094cda5a (diff) | |
download | bugseverywhere-6a019eea492e6de184e487d41c5fb35049eced9b.tar.gz |
Moved the layout quite a bit further.
Diffstat (limited to 'templates/list.html')
-rw-r--r-- | templates/list.html | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/templates/list.html b/templates/list.html index ecb7099..c9c271e 100644 --- a/templates/list.html +++ b/templates/list.html @@ -1,7 +1,20 @@ {% extends "base.html" %} {% block content %} - {% for bug in bugs %} - <p>{{ bug.summary }}</p> - {% endfor %} + <table> + <tr> + <th>ID</th> + <th>Summary</th> + <th>Status</th> + <th>Assigned To</th> + </tr> + {% for bug in bugs %} + <tr> + <td>{{ bugs.bug_shortname(bug) }}</td> + <td>{{ bug.summary }}</td> + <td>{{ bug.status }}</td> + <td>{{ bug.assigned }}</td> + </tr> + {% endfor %} + </table> {% endblock %}
\ No newline at end of file |