aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces/web/templates/list.html
diff options
context:
space:
mode:
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..1d409f7
--- /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>{{ bd.bug_shortname(bug) }}</td>
+ <td><a href="/bug?id={{ bd.bug_shortname(bug)}}">
+ {{ bug.summary|e|truncate(70) }}</a></td>
+ <td>{{ bug.status }}</td>
+ <td>{{ bug.target }}</td>
+ <td>{{ bug.assigned|striptags }}</td>
+ </tr>
+ {% endfor %}
+ </table>
+{% endblock %} \ No newline at end of file