From: Łukasz Rekucki <lrekucki@gmail.com>
Date: Fri, 4 Sep 2009 09:14:23 +0000 (+0200)
Subject: Zapomniany plik.
X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/1f39bd871ce30406dc771a6faffba68db635d2ed?ds=sidebyside

Zapomniany plik.
---

diff --git a/project/templates/explorer/file_upload.html b/project/templates/explorer/file_upload.html
new file mode 100755
index 00000000..7c52626d
--- /dev/null
+++ b/project/templates/explorer/file_upload.html
@@ -0,0 +1,22 @@
+{% extends "base.html" %}
+
+{% block maincontent %}
+
+
+
+
+
+<h2>Dodawanie nowego utworu:</h2>
+
+{% if other_errors %}
+<div class="errorlist">
+{% for error in other_errors %}
+<p>{{ error }}</p>
+{% endfor %}
+</div>
+{% endif %}
+<form action="{% url file_upload %}" method="POST" enctype="multipart/form-data">
+    {{ form.as_p }}
+    <p><button type="submit">Dodaj książkę</button></p>
+</form>
+{% endblock maincontent %}