TMP Removed forge
[myslice.git] / forge / templates / list.html
diff --git a/forge/templates/list.html b/forge/templates/list.html
deleted file mode 100644 (file)
index 42c2579..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-       <head>
-               <meta charset="utf-8">
-               <title>Minimal Django File Upload Example</title>
-       </head>
-       <body>
-       <!-- List of uploaded documents -->
-       {% if documents %}
-               <ul>
-               {% for document in documents %}
-                       <li><a href="{{ document.docfile.url }}">{{ document.docfile.name }}</a></li>
-               {% endfor %}
-               </ul>
-       {% else %}
-               <p>No documents.</p>
-       {% endif %}
-
-               <!-- Upload form. Note enctype attribute! -->
-               <form action="{% url "ict_education.views.list" %}" method="post" enctype="multipart/form-data">
-                       {% csrf_token %}
-                       <p>{{ form.non_field_errors }}</p>
-                       <p>{{ form.docfile.label_tag }} {{ form.docfile.help_text }}</p>
-                       <p>
-                               {{ form.docfile.errors }}
-                               {{ form.docfile }}
-                       </p>
-                       <p><input type="submit" value="Upload" /></p>
-               </form>
-       </body>
-</html>