comptoir_encaisser_cotisation.html.twig 1.13 KB
Newer Older
1 2 3
{% extends '@kohinos/block/onetransaction.html.twig' %}

{% block blocktitle %}
4
	<i class="fa fa-exchange fa-exchange-alt mr-4"></i> {{ 'Encaisser la COTISATION d\'un habitant'|trans }}
5 6 7 8 9 10 11
{% endblock blocktitle %}
{% block blockcontent %}
	{% if app.session.has('_comptoirgere') %}
		<div id="formEncaisserCotisationAdherent-montant-container" style="display:none">
			<h5> <b>Montant de la cotisation : <span id="formEncaisserCotisationAdherent-montant-display"></span></b></h5>
			<br/>
		</div>
12 13 14 15 16 17 18
		<div id="formEncaisserCotisationAdherent-no-cotisation-amount" style="display:none">
			<p class="formEncaisserCotisationAdherent-no-cotisation-amount">
				{% if household_based_allowance %}
					L'habitant•e n'a pas de montant de cotisation renseigné, impossible de l'encaisser.
				{% else %}
					L'habitant•e n'a pas de profil de cotisation affecté, impossible de l'encaisser.
				{% endif %}
19 20 21 22 23 24 25 26
			</p>
		</div>
		{% set form = getComptoirEncaisserCotisationForm(app.user) %}
		{{ parent() }}
	{% else %}
		<span><em> {{ 'Aucun Comptoir assigné ! Veuillez contacter un administrateur !'|trans }} </em></span>
	{% endif %}
{% endblock blockcontent %}