{% extends "default/datatable.html.twig" %} {% block custom_css %} {{parent()}} {% endblock %} {% block ajout %} {% if app.user.hasright(right_add) %} {{ 'Table.Add' | trans }} {% endif %} {% endblock %} {% block datatable %} {% for d in datas %} {% endfor %}
ID {{'Form.Name' | trans}} {{'Form.Countries' | trans}} {{'Form.Description' | trans}} {{'Table.Action' | trans}}
{{ d.id }} {{ d.name }} {% for c in d.countries %} {{ c | country_name ~", "}} {% endfor %} {{ d.description }} {% if app.user.hasright(right_edit) %} {{'Table.Edit' | trans}} {% endif %} {% if app.user.hasright(right_delete) %} {% endif %}
{% include 'restriction/modal.html.twig' %} {% endblock %} {% block initialisation %} {{parent()}} {% endblock %} {% block custom_js %} {{parent()}} {% endblock %}