mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-21 09:44:23 +00:00
32 lines
979 B
Twig
32 lines
979 B
Twig
{% extends "@ChillPerson/Person/layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = 'chill_person_duplicate' %}
|
|
|
|
{% block title %}{{ 'Find duplicate'|trans|capitalize ~ ' ' ~ person.firstName|capitalize ~
|
|
' ' ~ person.lastName }}{% endblock %}
|
|
|
|
|
|
{% block personcontent %}
|
|
<div class="person-duplicate">
|
|
|
|
<h1>{{ 'Désigner un dossier doublon'|trans }}</h1>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_rest(form) }}
|
|
|
|
<ul class="record_actions sticky-form-buttons">
|
|
<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) }}
|
|
|
|
</div>
|
|
{% endblock %}
|