aboutsummaryrefslogblamecommitdiffstats
path: root/templates/most_common_addresses.html
blob: 4ee45eda3cab5963a44af8490cc689a74bce74aa (plain) (tree)
1
2
3
4
5
6


                                
                                                     
                              
                           








                                                       
                                                                                                               






                                                  
{% include 'header.html' %}

<h1>Nejčastější sídla:</h1>
<table class="table table-hover" style="width: auto">
    <thead class="thead-dark">
    <tr class="table-info">
        <th scope="col">#</th>
        <th scope="col">Adresa</th>
        <th scope="col">Frekvence</th>
    </tr>
    </thead>
    <tbody>
    {% for i in range (most_common_addresses|length) %}
    <tr>
        <th scope = "row">{{ i + 1 }}</th>
        <td><a href="/results-sidlo-{{most_common_addresses[i][2]}}">{{ most_common_addresses[i][0] }}</a></td>
        <td>{{ most_common_addresses[i][1] }}</td>
    </tr>
    {% endfor %}
    </tbody>
</table>

{% include 'footer.html' %}