1 {% extends "base.html" %}
 
   2 {% load catalogue_tags pagination_tags %}
 
   4 {% block title %}Lektura {{ book.title }} w WolneLektury.pl{% endblock %}
 
   6 {% block bodyid %}book-detail{% endblock %}
 
   9     <h1>{{ book.title }}, {{ categories.author|join:", " }}</h1>
 
  10     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
 
  11         <p>{{ form.q }} <input type="submit" value="Szukaj" /> <strong>lub</strong> <a href="{% url main_page %}">wróć do strony głównej</a></p>
 
  15         <p>Na podstawie: {{ extra_info.source_name }}</p>
 
  16         {% if book.has_description %}
 
  17             <div id="description">
 
  18                 {{ book.description|safe }}
 
  20             <div id="toggle-description"><p>Zwiń opis ▲</p></div>
 
  23             <p class="change-sets">Wrzuć lekturę <span><a href="{% url catalogue.views.book_sets book.slug %}" class="jqm-trigger">na półkę!</a></span></p>
 
  24             <div class="clearboth"></div>
 
  26             {% if book.html_file %}
 
  27                 <a href="{% url book_text book.slug %}">Czytaj online</a>
 
  29             {% if book.pdf_file %}
 
  30                 <a href="{{ book.pdf_file.url }}">Pobierz plik PDF</a>
 
  32             {% if book.odt_file %}
 
  33                 <a href="{{ book.odt_file.url }}">Pobierz plik ODT</a>
 
  35             {% if book.txt_file %}
 
  36                 <a href="{{ book.txt_file.url }}">Pobierz plik TXT</a>
 
  38             {% if book.mp3_file and book.ogg_file %}
 
  39             <div id="czytamy-sluchajac-info">
 
  40                     <a href="http://czytamysluchajac.pl/" id="czytamysluchajac-logo"><img src="/media/img/czytamysluchajac-logo-small.png" /></a>     
 
  41                     <p>Czyta: {{ book.get_extra_info_value.artist_name }}</p>
 
  42                     <p>Reżyseruje: {{ book.get_extra_info_value.director_name }}</p>
 
  44                 <a href="{{ book.mp3_file.url }}">Pobierz plik MP3</a>
 
  45                 <a href="{{ book.ogg_file.url }}">Pobierz plik Ogg Vorbis</a>
 
  46                 <object type="application/x-shockwave-flash" style="margin-top: 0.5em" data="/media/player.swf" width="426" height="20">
 
  47                     <param name="movie" value="/media/player.swf" />
 
  48                     <param name="bgcolor" value="#ffffff" />
 
  49                     <param name="FlashVars" value="mp3={{ book.mp3_file.url }}&width=426&showvolume=1&bgcolor1=eeeeee&bgcolor2=eeeeee&buttoncolor=666666" />
 
  55         {% if book_children %}
 
  56         {% autopaginate book_children 10 %}
 
  57         <div id="book-children">
 
  59             {% for book in book_children %}
 
  60                 <li>{{ book.short_html }}</li>
 
  75                     {% for tag in categories.author %}
 
  76                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
 
  81                     {% for tag in categories.epoch %}
 
  82                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
 
  87                     {% for tag in categories.kind %}
 
  88                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
 
  93                     {% for tag in categories.genre %}
 
  94                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
 
  97                 <li><a href="{{ extra_info.about }}">Lektura na wiki projektu</a></li>
 
  98                 <li><a href="{{ extra_info.source_url }}">Lektura w CBN Polona</a></li>
 
  99                 <li><a href="{{ book.xml_file.url }}">Kod źródłowy utworu (XML)</a></li>
 
 102         <div id="themes-list">
 
 103             <h2>Motywy w utworze</h2>
 
 105             {% for theme in book_themes %}
 
 106                 <li><a href="{% url book_fragments book.slug,theme.slug %}">{{ theme }} ({{ theme.count }})</a></li>
 
 110         <div class="clearboth"></div>
 
 112     <div id="set-window">
 
 113         <div class="header"><a href="#" class="jqmClose">Zamknij</a></div>
 
 115             <p><img src="/media/img/indicator.gif" alt="*"/> Ładowanie</p>