admin_adherent.html.twig 1.17 KB
Newer Older
1
{% if false == isCotisationValid(app.user) %}
Julien Jorry committed
2 3 4 5 6
	<div class='text-danger mb-3'>{{ 'Si vous souhaitez utiliser les fonctionnalités de votre compte, vous devez avoir une cotisation valide !'|trans }}</div>
{% endif %}

{% set esoldelabel = 'Solde e-mlc'|trans %}
{% include '@kohinos/block/solde.html.twig' with {'compte': app.user.adherent.emlcAccount.balance, 'soldelabel': esoldelabel, 'currency' : 'e'~(KOH_MLC_SYMBOL|default(''))} %}
7
{% if KOH_USE_PAYZEN == 'true' or KOH_USE_HELLOASSO == 'true' %}
Julien Jorry committed
8 9 10 11 12 13 14 15 16 17
	{% include '@kohinos/adherent/block/achat_monnaie.html.twig' %}
{% else %}
	{% include '@kohinos/adherent/block/demande_achat_monnaie.html.twig' %}
{% endif %}
{% include '@kohinos/adherent/block/transaction_presta.html.twig' %}
{% include '@kohinos/adherent/block/transaction_adherent.html.twig' %}
{# {% include '@kohinos/block/transactions.html.twig' %} #}
{% include '@kohinos/block/operations.html.twig' %}
{% include '@kohinos/block/cotisations.html.twig' %}
{% include '@kohinos/adherent/block/infos.html.twig' %}
18
{% if KOH_USE_SOLIDOUME|default('false') == 'true' and getSolidoumeParam('name')|default('') is not null %}
Julien Jorry committed
19 20
	{% include '@kohinos/adherent/block/solidoume.html.twig' %}
{% endif %}