]> Raphaƫl G. Git Repositories - airbundle/blob - Resources/views/calendar/index.html.twig
Rename rapsysair:calendar2 command to rapsysair:calendar
[airbundle] / Resources / views / calendar / index.html.twig
1 {% extends '@RapsysAir/base.html.twig' %}
2 {% block content %}
3 <section id="form">
4 <header>
5 <h2><a href="{{ path('rapsysair_calendar') }}">{{ section }}</a></h2>
6 <p>{{ description }}</p>
7 </header>
8 {{ form_start(form) }}
9 <div>
10 {{ form_row(form.calendar) }}
11
12 {{ form_row(form.prefix) }}
13
14 {{ form_row(form.project) }}
15
16 {{ form_row(form.client) }}
17
18 {{ form_row(form.secret) }}
19
20 {{ form_row(form.submit) }}
21 </div>
22
23 {# Render CSRF token etc .#}
24 <footer style="display:none">{{ form_rest(form) }}</footer>
25 {{ form_end(form) }}
26 </section>
27 {% endblock %}