aboutsummaryrefslogtreecommitdiffstats
path: root/templates/book.html
blob: b107d997a043559feb70fc89b64f49c062892045 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 %}