vente_emlc_adherent.html.twig 602 Bytes
Newer Older
Julien Jorry committed
1 2 3
{% extends '@kohinos/block/onetransaction.html.twig' %}

{% block blocktitle %}
4
	<i class="fa fa-exchange fa-exchange-alt mr-4"></i> {% if tav_env %}{{ 'Encaisser la cotisation d\'un habitant'|trans }}{% else %}{{ 'Vente de monnaie numérique à un adhérent'|trans }}{% endif %}
Julien Jorry committed
5 6 7 8 9 10 11 12 13
{% endblock blocktitle %}
{% block blockcontent %}
	{% if app.session.has('_comptoirgere') %}
		{% set form = getVenteEmlcAdherentForm(app.user) %}
		{{ parent() }}
	{% else %}
		<span><em> {{ 'Aucun Comptoir assigné ! Veuillez contacter un administrateur !'|trans }} </em></span>
	{% endif %}
{% endblock blockcontent %}