{% extends "default/datatable.html.twig" %} {% block ajout %} {% if nb == 0 %}
{{'Message.NoFramework' | trans}}
{% if app.user.hasright('212') %} {{ 'Table.Add' | trans }} {% endif %} {% endif %} {% endblock %} {% block actionAll %}{% endblock %} {% block datatable %} {% for d in datas %} {% endfor %}
{{'Table.Cadre.Name' | trans}} {{'Table.Cadre.Sigle' | trans}} {{'Table.Cadre.Country' | trans}} {{'Table.Cadre.Nature' | trans}} {{'Table.Cadre.Contact' | trans}} {{'Table.Action' | trans}}
{{ d.name }} {{ d.sigle }} {{ d.country | country_name }} {% if d.status == 1 %} {{'Form.Cadre.Public' | trans}} {% elseif d.status == 2 %} {{'Form.Cadre.Private' | trans}} {% elseif d.status == 3 %} {{'Form.Cadre.ParaPublic' | trans}} {% elseif d.status == 4 %} {{'Form.Cadre.Special' | trans}} {% endif %} {% if d.telephone1 is not null %}{{ d.telephone1 }}
{% endif %} {% if d.telephone2 is not null %}{{ d.telephone2 }}
{% endif %} {% if d.email is not null %}{{ d.email }}
{% endif %}
{{'Table.View' | trans}} {% if app.user.hasright("213") and app.user.id == d.creaBy %} {{'Table.Edit' | trans}} {{'Table.DeleteLogo' | trans}} {% endif %}
{% endblock %} {% block initialisation %} {{parent()}} {% endblock %} {% block action %}{% endblock %}