onetransaction.html.twig 813 Bytes
Newer Older
Damien Moulard committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
{% extends 'block/block_collapse.html.twig' %}

{% block blocktitle %}
	Transaction
{% endblock blocktitle %}
{% block blocksubtitle %}
{% endblock blocksubtitle %}
{% block blockcontent %}
	{{ form_start(form) }}
	    {% if form.expediteur is defined %}
	    	{{ form_row(form.expediteur) }}
		{% endif %}
	    {% if form.destinataire is defined %}
	    	{{ form_row(form.destinataire) }}
	    {% endif %}
	    {% if form.montant is defined %}
	    	{{ form_row(form.montant) }}
	    {% endif %}
	    {% if form.moyen is defined %}
	        {{ form_row(form.moyen) }}
	    {% endif %}
	    {% if form.reference is defined %}
	    	{{ form_row(form.reference) }}
	    {% endif %}
	    {% if form.save is defined %}
	    	{{ form_row(form.save) }}
	    {% endif %}
	{{ form_end(form) }}
{% endblock blockcontent %}