aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
authorSteve Losh <steve@stevelosh.com>2009-01-29 21:31:29 -0500
committerSteve Losh <steve@stevelosh.com>2009-01-29 21:31:29 -0500
commit17bd39c87dc4133d4e31ec0fd11e155f3fe209a9 (patch)
tree10162e97aaf726199ec57e6e155c0102364a6304 /templates/base.html
parent90fdd9601e2450a420564668b01fb6df1287c196 (diff)
downloadbugseverywhere-17bd39c87dc4133d4e31ec0fd11e155f3fe209a9.tar.gz
Very basic working skeleton. Gets stuff from the bug directory, renders with Jinja.
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..8d873f9
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,3 @@
+{% for bug in bugs %}
+ <p>{{ bug.summary }}</p>
+{% endfor %} \ No newline at end of file