971dbabadcc2792627b7bf73d264f3175adff0f7
[wolnelektury.git] / src / isbn / templates / isbn / assigned_isbn.html
1 {% extends "base/base.html" %}
2
3 {% block title %}Przypisane ISBN{% endblock %}
4
5 {% block body %}
6
7   <h1>Przypisane ISBN</h1>
8   <h2>{{ title }}</h2>
9   <dl>
10     {% for format, isbn in isbn_formats %}
11       <dt>{{ format }}</dt><dd>{{ isbn }}</dd>
12     {% endfor %}
13   </dl>
14 {% endblock %}