rearrangements: new core app, templates in apps, split settings;
[wolnelektury.git] / wolnelektury / templates / catalogue / picture_list.html
diff --git a/wolnelektury/templates/catalogue/picture_list.html b/wolnelektury/templates/catalogue/picture_list.html
deleted file mode 100644 (file)
index a17d987..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-{% extends "catalogue/book_list.html" %}
-{% load i18n %}
-{% load catalogue_tags chunks %}
-{% load thumbnail %}
-
-{% block bodyid %}picture-list{% endblock %}
-
-{% block titleextra %}{% trans "Listing of all pictures" %}{% endblock %}
-
-{% block picture_list_header %}{% trans "Listing of all pictures" %}{% endblock %}
-
-
-{% block book_list %}
-{% for author, group in pictures_by_author.items %}
-<a name="{{ author.slug }}"/>
-<div class="group">
-  <h2><a href="{{ author.get_absolute_url }}">{{ author }}</a></h2>
-  {% for picture in group %}
-  <div class="picture">
-    {% thumbnail picture.image_file "300x300" as im %}
-    <img style="float: left; margin:{{ im|margin:"300x300" }}" src="{{ im.url }}" width="{{ im.x }}" height="{{ im.y }}" />
-    {% endthumbnail %}
-    <span class="title"><a href="{{picture.get_absolute_url}}">{{picture.title}}</a></span>
-    <br class="clearboth"/>
-  </div>
-  {% endfor %}
-</div>
-  
-{% endfor %}
-
-{% endblock %}
-