aboutsummaryrefslogtreecommitdiffstats
path: root/templates/most_common_ubo.html
diff options
context:
space:
mode:
authorPetr Šmerkl <46304018+SveterCZE@users.noreply.github.com>2021-06-10 23:36:54 +0200
committerPetr Šmerkl <46304018+SveterCZE@users.noreply.github.com>2021-06-10 23:36:54 +0200
commitcc86be247b6e10ccc0d21771c8d3583eb501b54e (patch)
tree2687f6e511d283621fc5b1d171cd3bccac926947 /templates/most_common_ubo.html
parenta52388e1a55bb973c401350d9fb4633ef185ee61 (diff)
downloadjustice-cc86be247b6e10ccc0d21771c8d3583eb501b54e.tar.gz
updating the ubo feature
Diffstat (limited to 'templates/most_common_ubo.html')
-rw-r--r--templates/most_common_ubo.html24
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