aboutsummaryrefslogtreecommitdiff
path: root/templates/form_qsjps.html
blob: 3a9bcf8af2f421cc72ae9685605727cbb5b1eb3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "index.html" %}

{% block title %}QSJPS – {% endblock %}

{% block body %}
      <h3>Trouver une salle</h3>
      <form action="{% url "qsjps" %}" method="post">
        <table>
          {% for field in form.visible_fields %}
            <tr>
              <th>{{ field.label_tag }}</th>
              <td>{{ field }}{% if field.errors %}<br /><span>{{ field.errors|join:" " }}</span>{% endif %}</td>
            </tr>
          {% endfor %}
          <tr><th></th><td><input type="submit" value="Trouver une salle" /></td></tr>
        </table>
      </form>
{% endblock %}