aboutsummaryrefslogtreecommitdiffstats
path: root/templates/oldest_shareholders.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/oldest_shareholders.html')
-rw-r--r--templates/oldest_shareholders.html29
1 files changed, 0 insertions, 29 deletions
diff --git a/templates/oldest_shareholders.html b/templates/oldest_shareholders.html
deleted file mode 100644
index 02767af..0000000
--- a/templates/oldest_shareholders.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{% include 'header.html' %}
-
-<h1>Nejstarší společní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 a příjmení</th>
- <th scope="col">Datum narození</th>
- <th scope="col">Adresa</th>
- <th scope="col">Ve společnosti</th>
- <th scope="col">Datum zápisu</th>
- </tr>
- </thead>
- <tbody>
- {% for i in range (oldest_shareholders_list|length) %}
- <tr>
- <th scope = "row">{{ i + 1 }}</th>
- <td>{% if oldest_shareholders_list[i][0] != "0" %} {{ oldest_shareholders_list[i][0] }} {% endif %}{{ oldest_shareholders_list[i][1] }}</a></td>
- <td>{{ oldest_shareholders_list[i][2] }}</td>
- <td>{{ oldest_shareholders_list[i][5] }}</td>
- <td>{{ oldest_shareholders_list[i][3] }}, IČ: <a href="{{ oldest_shareholders_list[i][4] }}">{{ oldest_shareholders_list[i][4] }}</a></td>
- <td>{{ oldest_shareholders_list[i][6] }}</td>
- </tr>
- {% endfor %}
- </tbody>
-</table>
-
-{% include 'footer.html' %} \ No newline at end of file