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