aboutsummaryrefslogtreecommitdiffstats
path: root/templates/most_common_activity.html
blob: dd73b4154cf066e1728abd36ba8c63dbf4f6eda2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% include 'header.html' %}

<h1>Nejčastější předmět činnosti:</h1>

<table class="table table-hover" style="width: auto">
    <thead class="thead-dark">
    <tr class="table-info">
        <th scope="col">#</th>
        <th scope="col">Předmět činnosti</th>
        <th scope="col">Frekvence</th>
    </tr>
    </thead>
    <tbody>
    {% for i in range (most_common_activity|length) %}
    <tr>
        <th scope = "row">{{ i + 1 }}</th>
        <td>{{ most_common_activity[i][0] }}</td>
        <td>{{ most_common_activity[i][1] }}</td>
    </tr>
    {% endfor %}
    </tbody>
</table>

{% include 'footer.html' %}