diff options
Diffstat (limited to 'templates/most_common_ubo.html')
-rw-r--r-- | templates/most_common_ubo.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/most_common_ubo.html b/templates/most_common_ubo.html new file mode 100644 index 0000000..318d52f --- /dev/null +++ b/templates/most_common_ubo.html @@ -0,0 +1,24 @@ +{% include 'header.html' %} + +<h1>Nejčastější koneční vlastníci:</h1> + +<table class="table table-hover" style="width: auto"> + <thead class="thead-dark"> + <tr class="table-info"> + <th scope="col">#</th> + <th scope="col">Jméno</th> + <th scope="col">Počet společností</th> + </tr> + </thead> + <tbody> + {% for i in range (most_common_ubo|length) %} + <tr> + <th scope = "row">{{ i + 1 }}</th> + <td><a href="/results-ubo-{{most_common_ubo[i][2]}}">{{ most_common_ubo[i][0] }}</a></td> + <td>{{ most_common_ubo[i][1] }}</td> + </tr> + {% endfor %} + </tbody> +</table> + +{% include 'footer.html' %}
\ No newline at end of file |