aboutsummaryrefslogblamecommitdiffstats
path: root/templates/longest_registered_persons.html
blob: 2c8b77a61e872117586f707fcc7ce093a0506f5f (plain) (tree)






























                                                                                                                                                                             
{% include 'header.html' %}

<h1>Nejdéle registrované osoby:</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">Funkce</th>
        <th scope="col">Ve společnosti</th>
        <th scope="col">Datum zápisu</th>
    </tr>
    </thead>
    <tbody>
    {% for i in range (longest_registered_persons_list|length) %}
    <tr>
        <th scope = "row">{{ i + 1 }}</th>
        <td>{% if longest_registered_persons_list[i][0] != "0" %} {{ longest_registered_persons_list[i][0] }} {% endif %}{{ longest_registered_persons_list[i][1] }}</a></td>
        <td>{{ longest_registered_persons_list[i][2] }}</td>
        <td>{{ longest_registered_persons_list[i][5] }}</td>
        <td>{{ longest_registered_persons_list[i][7] }}</td>
        <td>{{ longest_registered_persons_list[i][3] }}, IČ: <a href="{{ longest_registered_persons_list[i][4] }}">{{ longest_registered_persons_list[i][4] }}</a></td>
        <td>{{ longest_registered_persons_list[i][6] }}</td>
    </tr>
    {% endfor %}
    </tbody>
</table>

{% include 'footer.html' %}