aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
blob: c9c271e8f8b8ceefd5c0a56e26eaab3b268983b2 (plain) (blame)
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 %}