Remove old version.
[wolnelektury.git] / src / isbn / templates / isbn / assigned_isbn.html
1 {% extends "2022/base_simple.html" %}
2
3 {% block settings %}
4   {% load title %}
5   {% title 'Przypisane ISBN' %}
6 {% endblock %}
7
8 {% block title %}Przypisane ISBN{% endblock %}
9
10 {% block body %}
11
12   <h1>Przypisane ISBN</h1>
13   <div class="normal-text">
14     <h2>{{ title }}</h2>
15   <dl>
16     {% for format, isbn in isbn_formats %}
17       <dt>{{ format }}</dt><dd>{{ isbn }}</dd>
18     {% endfor %}
19   </dl>
20   </div>
21 {% endblock %}