aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/list.html')
-rw-r--r--templates/list.html16
1 files changed, 10 insertions, 6 deletions
diff --git a/templates/list.html b/templates/list.html
index e6fbaef..34e3169 100644
--- a/templates/list.html
+++ b/templates/list.html
@@ -1,5 +1,9 @@
{% extends "base.html" %}
+{% block page_title %}
+ {{ label }} Bugs
+{% endblock %}
+
{% block content %}
<table id="bug-list">
<tr>
@@ -9,12 +13,12 @@
<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>
+ <tr>
+ <td>{{ bd.bug_shortname(bug) }}</td>
+ <td>{{ bug.summary }}</td>
+ <td>{{ bug.status }}</td>
+ <td>{{ bug.assigned }}</td>
+ </tr>
{% endfor %}
</table>
{% endblock %} \ No newline at end of file