diff options
author | Steve Losh <steve@stevelosh.com> | 2009-01-30 17:43:07 -0500 |
---|---|---|
committer | Steve Losh <steve@stevelosh.com> | 2009-01-30 17:43:07 -0500 |
commit | 56ea256123ddee86d517cc5904c6898a094cda5a (patch) | |
tree | bcf0fb4f576e81fdfaa39f0797bb3682829b8407 /templates/list.html | |
parent | 7b9a7702aa3f49f21260bbe8ee9f1c13cae1cf34 (diff) | |
download | bugseverywhere-56ea256123ddee86d517cc5904c6898a094cda5a.tar.gz |
Started layout work.
Diffstat (limited to 'templates/list.html')
-rw-r--r-- | templates/list.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/list.html b/templates/list.html new file mode 100644 index 0000000..ecb7099 --- /dev/null +++ b/templates/list.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} + +{% block content %} + {% for bug in bugs %} + <p>{{ bug.summary }}</p> + {% endfor %} +{% endblock %}
\ No newline at end of file |