book abstracts - frontend
[wolnelektury.git] / src / catalogue / templates / catalogue / book_short.html
index 70aaed3..bf3a4b2 100644 (file)
             {% endfor %}
           </span></span>
 
+          {% if book.extra_info.location %}
+            <span class="category">
+            <span class="mono"> {% trans "Region" %}:</span>&nbsp;<span class="book-box-tag">
+                {{ book.extra_info.location }}
+            </span></span>
+          {% endif %}
+
           {% if book.is_foreign %}
             <span class="category">
               <span class="mono"> {% trans "Language" %}:</span>&nbsp;<span class="book-box-tag">
           {% endif %}
           {% endwith %}
         </div>
+        {% if book.abstract %}
+          <div class="abstract more">
+            {{ book.abstract|safe }}
+          </div>
+        {% endif %}
       </div>
       {% book_shelf_tags book.pk %}
 
             {% if book.pdf_file %}
               <span><a href="{{ book.pdf_file.url}}">PDF</a></span>
             {% endif %}
-            {% custom_pdf_link_li book %}
             {% if book.epub_file %}
               <span><a href="{{ book.epub_file.url}}">EPUB</a></span>
             {% endif %}
             {% if book.mobi_file %}
               <span><a href="{{ book.mobi_file.url}}">MOBI</a></span>
             {% endif %}
-            {% if  book.fb2_file %}
-              <span><a href="{{ book.fb2_file.url}}">FB2</a></span>
-            {% endif %}
-            {% if  book.txt_file %}
-              <span><a href="{{ book.txt_file.url}}">TXT</a></span>
+            {% if book.has_audio %}
+              <span><a href="{% url 'download_zip_mp3' book.slug %}">MP3</a></span>
             {% endif %}
-            {% download_audio book %}
+            <a class="read-more-show hide" href="#">{% trans "more" %}</a>
+            <span class="read-more-content">
+              {% if  book.fb2_file %}
+                <span><a href="{{ book.fb2_file.url}}">FB2</a></span>
+              {% endif %}
+              {% if  book.txt_file %}
+                <span><a href="{{ book.txt_file.url}}">TXT</a></span>
+              {% endif %}
+              {% download_audio book mp3=False %}
+              <br>
+              {% custom_pdf_link_li book %}
+              <a class="read-more-hide hide" href="#">{% trans "less" %}</a>
+            </span>
           </div>
         </li>
       </ul>