blob: f79e954c7fd88610c78961bae6cae59cb99c3719 (
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
|
{% include 'header.html' %}
<h1>Nejstarší právnické 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">Název</th>
<th scope="col">Datum založení</th>
</tr>
</thead>
<tbody>
{% for i in range (oldest_companies|length) %}
<tr>
<th scope = "row">{{ i + 1 }}</th>
<td><a href="{{ oldest_companies[i][2] }}">{{ oldest_companies[i][0] }}</a></td>
<td>{{ oldest_companies[i][1] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% include 'footer.html' %}
|