mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 05:44:24 +00:00
30 lines
777 B
Twig
30 lines
777 B
Twig
{% extends "@ChillPerson/layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = 'chill_person_duplicate' %}
|
|
|
|
{% block title %}{{ 'Find duplicate'|trans|capitalize ~ ' ' ~ person.firstName|capitalize ~
|
|
' ' ~ person.lastName }}{% endblock %}
|
|
|
|
|
|
{% block personcontent %}
|
|
|
|
<h1>Désigner un dossier doublon</h1>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_rest(form) }}
|
|
|
|
<ul class="grid-12 record_actions ">
|
|
<li class="cancel">
|
|
<a href="{{ path('chill_person_duplicate_view', {'person_id' : person.id}) }}" class="btn btn-cancel">
|
|
{{ 'Return'|trans }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<button class="btn btn-save" type="submit">{{ 'Next'|trans }}</button>
|
|
</li>
|
|
</ul>
|
|
|
|
{{ form_end(form) }}
|
|
|
|
{% endblock %}
|