1 {% extends "base.html" %}
 
   4 {% block title %}Liczniki w  WolneLektury.pl{% endblock %}
 
   6 {% block bodyid %}tagged-object-list{% endblock %}
 
  10     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
 
  11         <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
 
  15         <tr><th>Utwory</th></tr>
 
  16         <tr><td>Wszystkie utwory:</td><td>{{ books }}</td></tr>
 
  17         <tr><td>Utwory z własną treścią:</td><td>{{ books_nonempty }}</td></tr>
 
  18         <tr><td>Utwory bez własnej treści:</td><td>{{ books_empty }}</td></tr>
 
  19         <tr><td>Niezależne książki:</td><td>{{ books_root }}</td></tr>
 
  21         <tr><th>Media</th><th>Liczba</th><th>Rozmiar</th><th>Do wymiany</th></tr>
 
  22         {% for mt in media_types %}
 
  23             <tr><td>{{ mt.type }}:</td>
 
  24                 <td>{{ mt.count }}</td>
 
  25                 <td>{{ mt.size|filesizeformat }}</td>
 
  26                 <td>{{ mt.deprecated }}</td>