Display audiobook project and sponsors info from metadata,
[wolnelektury.git] / wolnelektury / templates / catalogue / counters.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block title %}Liczniki w  WolneLektury.pl{% endblock %}
5
6 {% block bodyid %}tagged-object-list{% endblock %}
7
8 {% block body %}
9     <h1>Liczniki</h1>
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>
12     </form>
13
14     <table>
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>
20
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>
27             </tr>
28         {% endfor %}
29     </table>
30
31 {% endblock %}