diff options
author | Steve Losh <steve@stevelosh.com> | 2009-01-29 21:31:29 -0500 |
---|---|---|
committer | Steve Losh <steve@stevelosh.com> | 2009-01-29 21:31:29 -0500 |
commit | 17bd39c87dc4133d4e31ec0fd11e155f3fe209a9 (patch) | |
tree | 10162e97aaf726199ec57e6e155c0102364a6304 /templates | |
parent | 90fdd9601e2450a420564668b01fb6df1287c196 (diff) | |
download | bugseverywhere-17bd39c87dc4133d4e31ec0fd11e155f3fe209a9.tar.gz |
Very basic working skeleton. Gets stuff from the bug directory, renders with Jinja.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 3 |
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 |