fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Text overlay toggler and table of contents
[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 %}