aboutsummaryrefslogtreecommitdiffstats
path: root/templates/longest_registered_shareholders.html
blob: 86e572df3a670632310430d7fe74b4fb1a008caf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% include 'header.html' %}

<h1>Nejdéle registrovaní 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 (longest_registered_shareholders_list|length) %}
    <tr>
        <th scope = "row">{{ i + 1 }}</th>
        <td>{% if longest_registered_shareholders_list[i][0] != "0" %} {{ longest_registered_shareholders_list[i][0] }} {% endif %}{{ longest_registered_shareholders_list[i][1] }}</a></td>
        <td>{{ longest_registered_shareholders_list[i][2] }}</td>
        <td>{{ longest_registered_shareholders_list[i][5] }}</td>
        <td>{{ longest_registered_shareholders_list[i][3] }}, IČ: <a href="{{ longest_registered_shareholders_list[i][4] }}">{{ longest_registered_shareholders_list[i][4] }}</a></td>
        <td>{{ longest_registered_shareholders_list[i][6] }}</td>
    </tr>
    {% endfor %}
    </tbody>
</table>

{% include 'footer.html' %}