]> Raphaƫl G. Git Repositories - airbundle/blob - Resources/views/default/dispute.html.twig
New page title, section and description schema
[airbundle] / Resources / views / default / dispute.html.twig
1 {% extends '@RapsysAir/body.html.twig' %}
2 {% block content %}
3 <section id="form">
4 <header>
5 <h2><a href="{{ path('rapsys_air_dispute') }}">{{ title }}</a></h2>
6 <p>{{ description }}</p>
7 </header>
8 {% if sent %}
9 <p class="message notice">{% trans %}Your message has been sent{% endtrans %}</p>
10 {% else %}
11 {{ form_start(form) }}
12 <div>
13 {{ form_row(form.offense) }}
14
15 {{ form_row(form.court) }}
16
17 {{ form_row(form.notice) }}
18
19 {{ form_row(form.agent) }}
20
21 {{ form_row(form.service) }}
22
23 {{ form_row(form.abstract) }}
24
25 {{ form_row(form.submit) }}
26 </div>
27
28 {# Render CSRF token etc .#}
29 <footer style="display:none">{{ form_rest(form) }}</footer>
30 {{ form_end(form) }}
31 {% endif %}
32 </section>
33 {% endblock %}