1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{% extends "base.html" %} {% block content %} <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 %}