summaryrefslogtreecommitdiffstats
path: root/inventar/templates/upload.html
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2015-05-10 01:06:46 +0200
committerSebastian Reichel <sre@ring0.de>2015-05-10 01:06:46 +0200
commit1f448ff2a0df12afbac6c3a30a23829440495cd4 (patch)
treedbf8e14db6ec25af07c3da1a5466531290af7b61 /inventar/templates/upload.html
parent1c3bd651e0477d133e5770930eb8c7bb08c4aff5 (diff)
parent1dc5ee4fdeb29dc6e058bda5a7c259968b763860 (diff)
downloadktt-inventory-system-1f448ff2a0df12afbac6c3a30a23829440495cd4.tar.bz2
merge conflict
Diffstat (limited to 'inventar/templates/upload.html')
-rw-r--r--inventar/templates/upload.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/inventar/templates/upload.html b/inventar/templates/upload.html
new file mode 100644
index 0000000..29a2dbe
--- /dev/null
+++ b/inventar/templates/upload.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+ {% if user.is_authenticated %}
+ <h2>Upload new Parent Tree:</h2>
+
+ <form enctype="multipart/form-data" method="post" action="/upload/">{% csrf_token %}
+ {{form}}
+ <input type="submit" value="Submit" />
+ <ul class="path">
+ {% for code in data %}
+ <li>{{ code }}</li>
+ {% endfor %}
+ </ul>
+ {% endif %}
+{% endblock %}