From 779defc902762ac84d28ade55fa1fc3860a3e54d Mon Sep 17 00:00:00 2001 From: Petr Šmerkl <46304018+SveterCZE@users.noreply.github.com> Date: Sun, 4 Apr 2021 23:59:25 +0200 Subject: Adding some trivia --- templates/most_common_addresses.html | 23 +++++++++++++++++++++++ templates/most_common_purpose.html | 24 ++++++++++++++++++++++++ templates/oldest_companies.html | 23 +++++++++++++++++++++++ templates/trivia.html | 13 +++++++++++++ 4 files changed, 83 insertions(+) create mode 100644 templates/most_common_addresses.html create mode 100644 templates/most_common_purpose.html create mode 100644 templates/oldest_companies.html create mode 100644 templates/trivia.html (limited to 'templates') diff --git a/templates/most_common_addresses.html b/templates/most_common_addresses.html new file mode 100644 index 0000000..8c2277f --- /dev/null +++ b/templates/most_common_addresses.html @@ -0,0 +1,23 @@ +{% include 'header.html' %} + +

Nejčastější sídla:

+ + + + + + + + + + {% for i in range (most_common_addresses|length) %} + + + + + + {% endfor %} + +
#AdresaFrekvence
{{ i + 1 }}{{ most_common_addresses[i][0] }}{{ most_common_addresses[i][1] }}
+ +{% include 'footer.html' %} \ No newline at end of file diff --git a/templates/most_common_purpose.html b/templates/most_common_purpose.html new file mode 100644 index 0000000..99bdc77 --- /dev/null +++ b/templates/most_common_purpose.html @@ -0,0 +1,24 @@ +{% include 'header.html' %} + +

Nejčastější účel:

+ + + + + + + + + + + {% for i in range (most_common_purpose|length) %} + + + + + + {% endfor %} + +
#ÚčelFrekvence
{{ i + 1 }}{{ most_common_purpose[i][0] }}{{ most_common_purpose[i][1] }}
+ +{% include 'footer.html' %} \ No newline at end of file diff --git a/templates/oldest_companies.html b/templates/oldest_companies.html new file mode 100644 index 0000000..443ad1c --- /dev/null +++ b/templates/oldest_companies.html @@ -0,0 +1,23 @@ +{% include 'header.html' %} + +

Nejstarší společnosti:

+ + + + + + + + + + {% for i in range (oldest_companies|length) %} + + + + + + {% endfor %} + +
#JménoDatum založení
{{ i + 1 }}{{ oldest_companies[i][0] }}{{ oldest_companies[i][1] }}
+ +{% include 'footer.html' %} \ No newline at end of file diff --git a/templates/trivia.html b/templates/trivia.html new file mode 100644 index 0000000..ced2c75 --- /dev/null +++ b/templates/trivia.html @@ -0,0 +1,13 @@ +{% include 'header.html' %} + +

Zajímavosti z rejstříku

+ +

Počet registrovaných osob: {{ number_entities }}

+ +

Další zajímvavé údaje z obchodního resjtříku:

+

Seznam nejčastějších sídel

+

Seznam nejstarších společností

+

Seznam nejčastějších účelů

+ + +{% include 'footer.html' %} \ No newline at end of file -- cgit