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
/
add_isbn.html
1
{% extends "base/base.html" %}
2
3
{% block title %}Dodaj ISBN{% endblock %}
4
5
{% block body %}
6
7
<h1>Dodaj ISBN</h1>
8
9
<form method="post" class="submit-form" action="{{ next_view }}">
10
{% csrf_token %}
11
<table>
12
{{ form.as_table }}
13
<tr><td></td><td><button type="submit">WyĆlij</button></td></tr>
14
</table>
15
</form>
16
17
{% endblock %}