diff options
author | Chris Ball <cjb@t60> | 2010-06-20 19:25:59 -0400 |
---|---|---|
committer | Chris Ball <cjb@t60> | 2010-06-20 19:25:59 -0400 |
commit | 3ded6cc157a4145370cef50e7d15b8a07441042e (patch) | |
tree | 04a1dc277c65cf1396487fe14eddd98a2b4e1047 /interfaces/web/templates/list.html | |
parent | 0df4bd7ae194bb07f36a2a69a0549037de01cb52 (diff) | |
parent | 2a8eb1f87a2c3f92d9113419ff125afb98b2e4ed (diff) | |
download | bugseverywhere-3ded6cc157a4145370cef50e7d15b8a07441042e.tar.gz |
Merge Steve Losh's cfbe tree, from:
http://bitbucket.org/sjl/cherryflavoredbugseverywhere/
Diffstat (limited to 'interfaces/web/templates/list.html')
-rw-r--r-- | interfaces/web/templates/list.html | 27 |
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 |