blob: 34e28d3e186d5965d1b35826a826965a65e1fc31 (
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
|
{% 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>Assigned To</th>
</tr>
{% for bug in bugs %}
<tr>
<td>{{ bd.bug_shortname(bug) }}</td>
<td>{{ bug.summary|e|truncate(60) }}</td>
<td>{{ bug.status }}</td>
<td>{{ bug.assigned|striptags }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}
|