From baf14633cbd8af6413290ccae5765aefd2a278a5 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Mon, 20 Jun 2016 16:37:07 -0400 Subject: remove old django folder --- .../photos/templates/photos/gallery_list.html | 57 ---------------------- 1 file changed, 57 deletions(-) delete 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 deleted file mode 100644 index 11c7289..0000000 --- a/bn_django/photos/templates/photos/gallery_list.html +++ /dev/null @@ -1,57 +0,0 @@ -{% extends "photos/base.html" %} -{# {% load markup %} #} - -{% block title %}Photo Sets{% endblock %} - -{% block content %} -{% if object_list %} - - {% for item in object_list %} - - - {% endfor %} -
- - {% if item.first %} - {{ item.first.title }} - {% else %} - (No photo available) - {% endif %} - - -

- {{ item.title }}

- {{ item.photo_set.count }} photo{{ item.photo_set.count|pluralize}} - {% if item.first.date %} - starting in {{ item.first.date|date:"M, Y" }}{% endif %} -
-{% 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