Remove old version.
[wolnelektury.git] / src / catalogue / templates / catalogue / picture_list.html
diff --git a/src/catalogue/templates/catalogue/picture_list.html b/src/catalogue/templates/catalogue/picture_list.html
deleted file mode 100644 (file)
index 60f2eb0..0000000
+++ /dev/null
@@ -1,29 +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 works" %}{% endblock %}
-
-{% block picture_list_header %}{% trans "Listing of all works" %}{% endblock %}
-
-
-{% block book_list %}
-  {% for author, group in pictures_by_author.items %}
-    <a name="{{ author.slug }}"></a>
-    <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 %}