aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces/web/templates/list.html
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2010-06-24 18:58:03 -0400
committerChris Ball <cjb@laptop.org>2010-06-24 18:58:03 -0400
commita461eec26dd3abae18f33df8de7c7185b678e00f (patch)
tree40557241a9dcd79d37ed3fd0b341e7e4c48bcf66 /interfaces/web/templates/list.html
parent9763adba687a0e8921187702dd55e9a7083c9db4 (diff)
parent545f633e0f24443c319d6f1bea82cdb480e0f2a2 (diff)
downloadbugseverywhere-a461eec26dd3abae18f33df8de7c7185b678e00f.tar.gz
Merge branch 'cfbe'
Diffstat (limited to 'interfaces/web/templates/list.html')
-rw-r--r--interfaces/web/templates/list.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/interfaces/web/templates/list.html b/interfaces/web/templates/list.html
new file mode 100644
index 0000000..83007d3
--- /dev/null
+++ b/interfaces/web/templates/list.html
@@ -0,0 +1,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 %}