aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
diff options
context:
space:
mode:
authorSteve Losh <steve@stevelosh.com>2009-01-30 20:53:41 -0500
committerSteve Losh <steve@stevelosh.com>2009-01-30 20:53:41 -0500
commit4096632287d468c98d7f808079a3f877e7f55fda (patch)
treec0fa822b8733ebc75061411520e9c07cc8b526e2 /templates/list.html
parentde82c493eab41330169949254a8152f5c7d9302c (diff)
downloadbugseverywhere-4096632287d468c98d7f808079a3f877e7f55fda.tar.gz
Oh my god I have CSS display directives.
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