{% 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 %}
{{'Table.Provider.ID' | trans}} {{'Table.Provider.Name' | trans}} {{'Table.Provider.Limit' | trans}} {{'Table.Provider.Active' | trans}} {{'Table.Provider.Format' | trans}} {{'Table.Action' | trans}}
{{ d.id }} {{ d.name }} {{ d.limitation }} {% if d.active == 1 %} {{ 'Table.Yes' | trans }} {% else %} {{ 'Table.No' | trans }} {% endif %} {% if d.type == 1 %} {{ 'Form.SMS.Type.HTTP' | trans }} {% elseif d.type == 2 %} {{ 'Form.SMS.Type.HTTPS' | trans }} {% elseif d.type == 3 %} {{ 'Form.SMS.Type.JSON' | trans }} {% elseif d.type == 4 %} {{ 'Form.SMS.Type.XML' | trans }} {% endif %} {% if app.user.hasright(right_edit) %} {{'Table.Edit' | trans}} {% endif %} {% if app.user.hasright(right_delete) %} {% endif %}
{% include 'provider/sms/modal.html.twig' %} {% endblock %} {% block initialisation %} {{parent()}} {% endblock %} {% block custom_js %} {{parent()}} {% endblock %}