From 9cceba9b3466a2e5a7e712414bdf006215d7cb18 Mon Sep 17 00:00:00 2001 From: Petr Šmerkl <46304018+SveterCZE@users.noreply.github.com> Date: Sun, 18 Apr 2021 00:16:48 +0200 Subject: add search by persons --- templates/most_common_degree.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 templates/most_common_degree.html (limited to 'templates/most_common_degree.html') diff --git a/templates/most_common_degree.html b/templates/most_common_degree.html new file mode 100644 index 0000000..72ac5b2 --- /dev/null +++ b/templates/most_common_degree.html @@ -0,0 +1,28 @@ +{% include 'header.html' %} + +

Nejčastější tituly:

+ + + + + + + + + + + + + {% for i in range (most_common_degree_before|length) %} + + + + + + + + {% endfor %} + +
#Titul před jménemFrekvenceTitul za jménemFrekvence
{{ i + 1 }}{{ most_common_degree_before[i][0] }}{{ most_common_degree_before[i][1] }}{{ most_common_degree_after[i][0] }}{{ most_common_degree_after[i][1] }}
+ +{% include 'footer.html' %} \ No newline at end of file -- cgit