aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces/web/templates/list.html
blob: 83007d3e05658fca609714fccda7a8a449238eaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "base.html" %}

{% block page_title %}
    {{ label }}
{% endblock %}

{% block content %}
    <table id="bug-list">
        <tr>
            <th>ID</th>
            <th>Summary</th>
            <th>Status</th>
            <th>Target</th>
            <th>Assigned To</th>
        </tr>
        {% for bug in bugs %}
        <tr>
            <td>{{ bug.id.user() }}</td>
            <td><a href="/bug?id={{ bug.id.user() }}">
                {{ bug.summary|e|truncate(70) }}</a></td>
            <td>{{ bug.status }}</td>
            <td>{{ bug.target }}</td>
            <td>{{ bug.assigned|striptags }}</td>
        </tr>
        {% endfor %}
    </table>
{% endblock %}