diff options
author | bnewbold <bnewbold@robocracy.org> | 2012-11-30 18:39:37 +0100 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2012-11-30 18:39:37 +0100 |
commit | ddd0072e70dade6bdbecc3123989150ad046556e (patch) | |
tree | 1ad62abe45ac131fa1fc09e16337fdb07164185b /templates/book.html | |
download | circles-ddd0072e70dade6bdbecc3123989150ad046556e.tar.gz circles-ddd0072e70dade6bdbecc3123989150ad046556e.zip |
init everything
Diffstat (limited to 'templates/book.html')
-rw-r--r-- | templates/book.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/book.html b/templates/book.html new file mode 100644 index 0000000..b107d99 --- /dev/null +++ b/templates/book.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} +{% block body %} + +{% if not book %} +<h1>NO BOOK FOUND :(</h1> +{% else %} +<h1>FOUND BOOK! <a href="{{book.url}}">{{book.md5sum}}</a> + +Redirecting to <a href="{{book.url}}">{{book.url}}</a>... +{% endif %} + +{% endblock %} |