blob: e6fbaefbfa3d457424369e510e47d11c0302a1d0 (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block content %}
<table id="bug-list">
<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 %}
|