From acfaf3460905054249509f9459a235d99a24f028 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Mon, 19 Feb 2007 00:28:16 -0800 Subject: forgot to add several photo files --- .../photos/templates/photos/gallery_list.html | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 bn_django/photos/templates/photos/gallery_list.html (limited to 'bn_django/photos/templates/photos/gallery_list.html') diff --git a/bn_django/photos/templates/photos/gallery_list.html b/bn_django/photos/templates/photos/gallery_list.html new file mode 100644 index 0000000..61225c4 --- /dev/null +++ b/bn_django/photos/templates/photos/gallery_list.html @@ -0,0 +1,56 @@ +{% extends "photos/base.html" %} +{# {% load markup %} #} + +{% block path %}photos{% endblock %} +{% block title %}Photo Galleries{% endblock %} + +{% block content %} +{% if object_list %} +
+
+ {% for item in object_list %} + +

  {{ item.title }}

+



+ {% endfor %} +
+
+{% else %} +

No galleries have been set up yet.

+{% endif %} + + +{% if is_paginated %} + +{% if has_previous %} +« previous | +{% endif %} +{% if has_next %} +next » +{% endif %} +{% endif %} + + + +{% endblock %} -- cgit v1.2.3