fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f5ee6c2932ac6b1aaae979fd29a06cb90337752f
[wolnelektury.git]
/
src
/
stats
/
templates
/
stats
/
top.html
1
{% extends 'base/base.html' %}
2
3
4
{% block body %}
5
<div class="white-box">
6
<form method=""get" action="">
7
{{ form.as_p }}
8
<button type="submit">Filtruj</button>
9
</form>
10
<hr>
11
12
<table>
13
<tr>
14
<th>Książka</th>
15
<th>Unikalne odsłony</th>
16
<th>Odsłony</th>
17
</tr>
18
{% for v in visits %}
19
<tr>
20
<td>
21
<a href="/katalog/lektura/{{ v.book__slug }}/">
22
{{ v.book__slug }}
23
</a>
24
</td>
25
<td>
26
{{ v.unique_views }}
27
</td>
28
<td>
29
{{ v.views }}
30
</td>
31
</tr>
32
{% endfor %}
33
</table>
34
</div>
35
{% endblock %}