mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
30 lines
790 B
Twig
30 lines
790 B
Twig
{% extends "ChillPersonBundle::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.date_opening, { 'label' : 'views.Person.hupdate.dateOpening' }) }}
|
|
|
|
{{ form_row(form.date_closing, { 'label' : 'views.Person.hupdate.dateClosing' }) }}
|
|
|
|
{{ form_row(form.motive, { 'label' : 'views.Person.hupdate.motive_of_closing' }) }}
|
|
|
|
{{ form_row(form.memo, { 'label' : 'views.Person.hupdate.texto' }) }}
|
|
|
|
{{form_rest(form) }}
|
|
|
|
<div class="medium btn danger icon-right entypo icon-lock">
|
|
<button type="submit">{{ 'views.Person.hupdate.action'|trans }}</button>
|
|
</div>
|
|
|
|
{{ form_end(form) }}
|
|
|
|
{% endblock personcontent %}
|