{% block ajout %}
{% if right_add is not defined %}{% set right_add = 'OOO' %}{% endif %}
{% if app.user.hasright(right_add) %}
{{ 'Table.Add' | trans }}
{% endif %}
{% endblock %}
{% block actionAll %}
{# Definition de boutton par défaut, au cas où l'utilité n'est pas explicitement définie dans le contrôleur #}
{% if right_import is not defined %}{% set right_import = 'OOO' %}{% set import = 'dashboard' %}{% endif %}
{% if app.user.hasright(right_import) %}
{{ 'Table.Import' | trans }}
{% endif %}
{% if right_delete_all is not defined %}{% set right_delete_all = 'OOO' %}{% endif %}
{% if app.user.hasright(right_delete_all) %}
{% endif %}