diff options
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 |