aboutsummaryrefslogtreecommitdiffstats
path: root/templates/most_common_addresses.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/most_common_addresses.html')
-rw-r--r--templates/most_common_addresses.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/most_common_addresses.html b/templates/most_common_addresses.html
index 8c2277f..4ee45ed 100644
--- a/templates/most_common_addresses.html
+++ b/templates/most_common_addresses.html
@@ -1,9 +1,9 @@
{% include 'header.html' %}
<h1>Nejčastější sídla:</h1>
-<table class="table table-hover">
+<table class="table table-hover" style="width: auto">
<thead class="thead-dark">
- <tr>
+ <tr class="table-info">
<th scope="col">#</th>
<th scope="col">Adresa</th>
<th scope="col">Frekvence</th>
@@ -13,7 +13,7 @@
{% for i in range (most_common_addresses|length) %}
<tr>
<th scope = "row">{{ i + 1 }}</th>
- <td>{{ most_common_addresses[i][0] }}</td>
+ <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 %}