{% extends 'TdbBaseBundle::layout.html.twig' %} {% block title %}Aliases{% endblock %} {% block body %}

Gestion des aliases

{% if is_granted('ROLE_DOMAIN_ALIAS_ADMIN') %} Créer un alias{% endif %}
{% if main_aliases|length > 0 %}

Aliases principaux

{% if is_granted('ROLE_DOMAIN_ALIAS_ADMIN') %}{% endif %} {% for alias in main_aliases %} {% if is_granted('ROLE_DOMAIN_ALIAS_ADMIN') %} {% endif %} {% endfor %}
Alias Activé 
{{ alias.addr }} {% if not alias.locked or is_granted('ROLE_SUPER_ADMIN') %} {% if alias.enabled %} {% else %} {% endif %} {% else %} {% if alias.enabled %} {% else %} {% endif %} {% endif %} {% if alias.locked==true and not is_granted("ROLE_SUPER_ADMIN") %} {% else %} Editer {# #} {% endif %}
{% endif %}

Liste des aliases

{% if is_granted('ROLE_DOMAIN_ALIAS_ADMIN') %}{% endif %} {% for alias in all_aliases %} {% if is_granted('ROLE_DOMAIN_ALIAS_ADMIN') %} {% endif %} {% endfor %}
Alias Activé 
{{ alias.addr }} {% if not alias.locked or is_granted('ROLE_SUPER_ADMIN') %} {% if alias.enabled %} {% else %} {% endif %} {% else %} {% if alias.enabled %} {% else %} {% endif %} {% endif %} {% if alias.locked==true and not is_granted("ROLE_SUPER_ADMIN") %} {% else %} Editer {% if is_granted('ROLE_ADMIN') %}{% endif %} {% endif %}
{% endblock %}