Refaktor przyciskow.
[redakcja.git] / project / templates / explorer / file_upload.html
1 {% extends "base.html" %}
2
3 {% block maincontent %}
4
5
6
7
8
9 <h2>Dodawanie nowego utworu:</h2>
10
11 {% if other_errors %}
12 <div class="errorlist">
13 {% for error in other_errors %}
14 <p>{{ error }}</p>
15 {% endfor %}
16 </div>
17 {% endif %}
18 <form action="{% url file_upload %}" method="POST" enctype="multipart/form-data">
19     {{ form.as_p }}
20     <p><button type="submit">Dodaj książkę</button></p>
21 </form>
22 {% endblock maincontent %}