Remove old version.
[wolnelektury.git] / src / catalogue / templates / catalogue / book_detail.html
diff --git a/src/catalogue/templates/catalogue/book_detail.html b/src/catalogue/templates/catalogue/book_detail.html
deleted file mode 100644 (file)
index d2bfda7..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-{% extends "base/base.html" %}
-{% load i18n %}
-{% load catalogue_tags %}
-{% load build_absolute_uri from fnp_common %}
-{% load annoy_banner from annoy %}
-{% load cache %}
-
-{% block titleextra %}{{ book.pretty_title }}{% endblock %}
-{% block ogimage %}{% if book.cover %}{{ book.cover.url|build_absolute_uri:request }}{% endif %}{% endblock %}
-
-{% block metadescription %}{% book_title book %}. {{ block.super }}{% endblock %}
-
-{% block bodyid %}book-detail{% endblock %}
-
-
-{% block body %}
-  {% include 'catalogue/book_wide.html' %}
-
-  {% work_list book_children %}
-
-  {% spaceless %}
-    {% if book.other_versions %}
-      <section class="see-also">
-        <h1>{% trans "Other versions" %}:</h1>
-        {% for rel in book.other_versions %}
-         {{ rel.mini_box }}
-        {% endfor %}
-      </section>
-    {% endif %}
-
-    {% annoy_banner 'book-page' %}
-
-    <section class="see-also">
-      <h2>{% trans "See also" %}:</h2>
-      {% related_books book taken=book.other_versions|length %}
-    </section>
-  {% endspaceless %}
-
-  {% with book.related_themes as themes %}
-    {% if themes %}
-      <h2>{% trans "Themes" %}</h2>
-      {% plain_list themes book=book %}
-    {% endif %}
-  {% endwith %}
-
-
-  <h2>{% trans "Information about the work" %}</h2>
-  {% for author in book.authors %}
-    <div class="white-box">
-      <a style="display:block" href="{{ author.get_absolute_url }}">
-       {% cache 86400 catalogue_tag_box author.pk %}
-          {% include 'catalogue/tag_box.html' with tag=author %}
-       {% endcache %}
-      </a>
-    </div>
-  {% endfor %}
-
-
-  {% with extra_info=book.get_extra_info_json %}
-    {% for source_url in extra_info.source_urls %}
-      <div class="white-box">
-        <a href="{{ source_url }}">{% trans "Source" %}</a> {% trans "of the book" %}
-        {% trans "in" %} {% source_name source_url %}
-      </div>
-    {% empty %}
-      {% if extra_info.source_url %}
-        <div class="white-box">
-          <a href="{{ extra_info.source_url }}">{% trans "Source" %}</a> {% trans "of the book" %}
-          {% trans "in" %} {% source_name extra_info.source_url %}
-        </div>
-      {% endif %}
-    {% endfor %}
-  {% if book|status:user != 'closed' %}
-    <div class="white-box"><a href="{{ book.xml_url }}">{% trans "Source XML file" %}</a></div>
-  {% endif %}
-  {% if extra_info.about and not hide_about %}
-    <div class="white-box">
-      {% trans "Book on" %} <a href="{{ extra_info.about }}">{% trans "Editor's Platform" %}</a>
-    </div>
-  {% endif %}
-  {% if book.wiki_link %}
-    <div class="white-box">
-      <a href="{{ book.wiki_link }}">{% trans "Book description on Wikipedia" %}</a>
-    </div>
-  {% endif %}
-  <div class="white-box">
-    <a href="{% url 'poem_from_book' book.slug %}">{% trans "Mix this book" %}</a>
-  </div>
-{% endwith %}
-
-{% endblock %}