a69e9d1652d62c1b2d2a9c94b7e25e2cae97503e
[wolnelektury.git] / src / reporting / templates / reporting / main.html
1 {% extends request.EXPERIMENTS.layout.value|yesno:"2022/base_simple.html,base/base.html" %}
2 {% load i18n %}
3 {% load reporting_stats catalogue_tags %}
4
5 {% block settings %}
6   {% load title %}
7   {% trans "Reports" as title %}
8   {% title title %}
9 {% endblock %}
10
11 {% block titleextra %}{% trans "Reports" %}{% endblock %}
12
13 {% block bodyid %}reports-stats{% endblock %}
14
15
16 {% block body %}
17   <h1>Statystyka</h1>
18
19   <div class="normal-text">
20     <h3>Audiobooki</h3>
21
22     <table class="stats">
23       <tr><th>Utwory</th></tr>
24       <tr><td>Utwory:</td><td>{% count_books %}</td></tr>
25       <tr><td>Niezależne książki:</td><td>{% count_books_root %}</td></tr>
26       <tr><td>Utwory nadrzędne:</td><td>{% count_books_parent %}</td></tr>
27       <tr><td>Wszystkie utwory:</td><td>{% count_books_all %}</td></tr>
28
29       <tr><th>Media</th><th>Liczba</th><th>Rozmiar</th><th>Do wymiany</th></tr>
30       {% for mt in media_types %}
31         <tr>
32           <td>{{ mt.type }}:</td>
33           <td>{{ mt.count }}</td>
34           <td>{{ mt.size|filesizeformat }}</td>
35           <td>
36             {{ mt.deprecated }}
37             {% for m in mt.deprecated_files %}
38               <br/><a href="{{ m.book.get_absolute_url }}">{% book_title m.book %}: {{ m }}</a>
39             {% endfor %}
40           </td>
41         </tr>
42       {% endfor %}
43     </table>
44
45     <h3>Licencje</h3>
46     <ul>
47       {% for license, license_description in licenses %}
48         <li>{{ license }} ({{ license_description }})</li>
49       {% endfor %}
50     </ul>
51   </div>
52 {% endblock %}