testappproj/templates/upload.html
changeset 0 0b061d58aea3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testappproj/templates/upload.html	Mon May 17 22:33:59 2010 +0530
@@ -0,0 +1,16 @@
+{%extends "base.html"%}
+{%block body%}
+
+<p><b>Your upload was processed!</b></p>
+<p><b>Report - </b></p>
+{% for item in report %}
+  <p>
+   {{item.name}} gave <em class='upload_{{item.status}}'>{{item.status}}</em>
+   {% ifequal item.status "error" %}
+    {{ item.upload_response }}
+   {% endifequal %}
+  </p>
+{% endfor %}
+
+{%endblock%}
+