transaction.html.twig 537 Bytes
Newer Older
1 2 3
{% extends 'common/layout.html.twig' %}

{% block content %}
4
<div class='container groupeshow mt-5 mb-5' style='max-width:800px;'>
5
	<h4>{{ title }} :</h4>
6
	{# <h5>{{ 'Mon compte'|trans }} : {{compte}}</h5> #}
7 8 9 10
    {{form_start(form)}}
    {{ form_row(form.expediteur) }}
    {{ form_row(form.destinataire) }}
    {{ form_row(form.montant) }}
11 12 13
    {% if form.moyen is defined %}
        {{ form_row(form.moyen) }}
    {% endif %}
14 15 16 17 18
    {{ form_row(form.reference) }}
    {{ form_row(form.save) }}
    {{form_end(form)}}
</div>
{% endblock %}