diff options
author | Petr Šmerkl <46304018+SveterCZE@users.noreply.github.com> | 2021-04-16 23:50:43 +0200 |
---|---|---|
committer | Petr Šmerkl <46304018+SveterCZE@users.noreply.github.com> | 2021-04-16 23:50:43 +0200 |
commit | 9a9914e21a4813e1ebb810be2b3b8084067c63b4 (patch) | |
tree | b4ebddb948f521beacea9a1513452670ae3462cf /templates/results_persons.html | |
parent | c1e3a9f4c0b7cdb03fbd90474d9576dc79438bea (diff) | |
download | justice-9a9914e21a4813e1ebb810be2b3b8084067c63b4.tar.gz |
work in progress - search by persons
Diffstat (limited to 'templates/results_persons.html')
-rw-r--r-- | templates/results_persons.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/templates/results_persons.html b/templates/results_persons.html new file mode 100644 index 0000000..a3ceb38 --- /dev/null +++ b/templates/results_persons.html @@ -0,0 +1,58 @@ +{% include 'header.html' %} + +{% if show_form == True %} + {% include 'search_form_person.html' %} +{% endif %} + +<p><b>Počet nalezených osob: {{ results|length }}</b></p> + +{% set count = namespace(value=0) %} +{% for row in results %} +<p>{{ row }} {{ row.statut_org_association }} + {% for elem in row.spolecnik_association %} + {{ elem.company.nazev }} {{ elem.adresa }} + {% endfor %} + </p> + {% for elem in row.statut_org_association %} + {% if count.value % 2 == 0 %} + {% set table_style = "table table-light" %} + {% else %} + {% set table_style = "table table-secondary" %} + {% endif %} + <table class= "{{table_style}}" style="width: 100%"> + <p></p> + <tr> + <td style="width:20%">Jméno:</td> + <td style="width:40%"><b>{{ row.get_name() }}</b></td> + <td style="width:15%">Datum narození:</td> + <td style="width:25%"><b>{{ row.datum_naroz }}</b></td> + </tr> + + <tr> + <td>Adresa:</td> + <td>{{ elem.adresa }}</td> + <td>Angažmá:</td> + <td>{{ elem.funkce }}</td> + </tr> + + <tr> + <td>Název subjektu:</td> + <td><b>{{ elem.statutarni_organ.company.nazev }}</b></td> + <td>IČO:</td> + <td><a href="/{{ elem.statutarni_organ.company.ico }}"><b>{{ elem.statutarni_organ.company.ico }}</b></a></td> + </tr> + + <tr> + <td>Spisová značka:</td> + <td>{{elem.statutarni_organ.company.oddil}} {{elem.statutarni_organ.company.vlozka}} vedená u {{elem.statutarni_organ.company.soud}}</td> + <td>Den zápisu:</td> + <td>{{elem.statutarni_organ.company.zapis}}</td> + </tr> + + </table> + {% set count.value = count.value + 1 %} + {% endfor %} +{% endfor %} + + +{% include 'footer.html' %}
\ No newline at end of file |