diff options
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 %} |