aboutsummaryrefslogtreecommitdiffstats
path: root/templates/search_form_person.html
blob: 30d4865c12e07a01d8cf07f210b6d131a136b0a6 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{% include 'header.html' %}
<title>Justice Database</title>

<h2>Justice Database</h2>

<p></p><p>

{% with messages = get_flashed_messages() %}
  {% if messages %}
    <ul class="flashes">
    {% for message in messages %}
      <li>{{ message }}</li>
    {% endfor %}
    </ul>
  {% endif %}
{% endwith %}


{% from "_formhelpers.html" import render_field %}

<!-- NAME -->
<form method="post">
    <div class="row g-2">
      <div class="col-sm-3">
        {{ form.fist_name_search.label }}
      </div>
      <div class="col-sm">
        {{ form.fist_name_search()|safe }} {{ form.fist_name_search_selection }}
      </div>
    </div>

<!-- SURNAME -->
    <div class="row g-2">
      <div class="col-sm-3">
        {{ form.surname_search.label }}
      </div>
      <div class="col-sm">
        {{ form.surname_search()|safe }} {{ form.surname_search_selection }}
      </div>
    </div>

<!-- BIRTHDAY -->    
    <div class="row g-2">
      <div class="col-sm-3">
        {{ form.birthday.label }}
      </div>
      <div class="col-sm">
        {{ form.birthday }}
      </div>
    </div>

    <div class="row g-2">
      <div class="col-sm-3">
        Vyhledávat údaje:
      </div>
      <div class="col-sm">
        {{ form.person_actual_selection }}
      </div>
    </div>


  </p>
  <p><input type="submit" value="Search">
  </p>
</form>

{% include 'footer.html' %}