mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
27 lines
614 B
Twig
27 lines
614 B
Twig
{% extends "CLChillPersonBundle::layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = null %}
|
|
|
|
{% block title %}{% endblock title %}
|
|
|
|
{% form_theme form 'CLChillMainBundle:Form:fields.html.twig' %}
|
|
|
|
{% block personcontent %}
|
|
|
|
{{ form_start(form) }}
|
|
|
|
{{ form_row(form.dateOpening, {'label' : 'views.Person.open.date_of_opening'} ) }}
|
|
|
|
{{ form_row(form.texto, {'label' : 'views.Person.open.texto' } ) }}
|
|
|
|
{{ form_rest(form) }}
|
|
|
|
<div class="medium btn danger icon-right entypo icon-lock">
|
|
<button type="submit">{{ 'views.Person.open.action'|trans }}</button>
|
|
</div>
|
|
|
|
{{ form_end(form) }}
|
|
|
|
|
|
{% endblock personcontent %}
|