X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/ade662a8e015bcecdc58512f915e4f56d16a56ed:/sommitrealweird/photo/templates/photo/album_index.html..5d2c22628bbba4eb7ea12a1f5e11bdcc6c866e03:/sommitrealweird/photo/templates/photo/static/gitweb.js diff --git a/sommitrealweird/photo/templates/photo/album_index.html b/sommitrealweird/photo/templates/photo/album_index.html deleted file mode 100644 index beaeacb..0000000 --- a/sommitrealweird/photo/templates/photo/album_index.html +++ /dev/null @@ -1,49 +0,0 @@ -{% extends "base.html" %} -{% load thumbnail %} -{% load xhtml11rst %} - -{% block title %}Photos{% endblock %} - -{% block content %} - {% if object_list %} - {% for album in object_list %} - {% if forloop.last %} -
- {% else %} -
- {% endif %} - {% if album.get_main_image %} - {{ album.get_main_image.caption }} - {% endif %} -

{{ album.name }}

- {% if album.caption %} -

{{ album.caption }}

- {% endif %} -
 
-
- {% endfor %} - {% if is_paginated %} -

Pages: - {% if page_obj.has_previous %} - Previous | - {% endif %} - {% for paginator_page in paginator.page_range %} - {% if forloop.first %} - {% else %} - | - {% endif %} - {% ifequal paginator_page page %} - {{ page }} - {% else %} - {{ paginator_page }} - {% endifequal %} - {% endfor %} - {% if page_obj.has_next %} - | Next - {% endif %} -

- {% endif %} - {% else %} -

There are no photo albums available.

- {% endif %} -{% endblock %}