myaccount.html.twig 511 Bytes
Newer Older
Julien Jorry committed
1 2 3 4 5 6
{% extends '@kohinos/common/layout.html.twig' %}

{% block content %}
<div class='container' style='max-width: 800px;'>
	{% include '@kohinos/block/breadcrumb.html.twig' with {'label' : 'Mon compte'|trans } %}
	<div id="accordion" class='text-center mb-5'>
7
		{% if not tav_env or tav_env == 1 and not (is_granted('ROLE_ADHERENT') and app.user.adherent) %}
8 9
			{% include '@kohinos/block/userinfos.html.twig' %}
		{% endif %}
Julien Jorry committed
10 11 12 13 14
		{% include '@kohinos/block/userpassword.html.twig' %}
	</div>
</div>
{% endblock %}