From 32fafa238da0177c24d01f064a555acbd0c8c32c Mon Sep 17 00:00:00 2001 From: Sanj Date: Fri, 16 Nov 2012 04:41:07 +0530 Subject: [PATCH] oops, forgot to add upload template --- itf/templates/mediagallery/upload.html | 45 ++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 itf/templates/mediagallery/upload.html diff --git a/itf/templates/mediagallery/upload.html b/itf/templates/mediagallery/upload.html new file mode 100644 index 0000000..34c9834 --- /dev/null +++ b/itf/templates/mediagallery/upload.html @@ -0,0 +1,45 @@ + +{% extends 'noel/base.html' %} + +{% load thumbnail %} +{% block extra_head %} + + + + +{% endblock %} + +{% block content %} + + +
+ + +
+ {% for photo in photos %} +
+ {% if photo.image %} + {% thumbnail photo.image "100x100" crop="center" as thumb %} + + {% endthumbnail %} + {% endif %} + + +
+ {% endfor %} +
+
+ +{% endblock %}