{% extends 'admin/layout.html.twig' %} {% block title %}Administration site Internet - EDIFIA WEB{% endblock %} {% block content %} {% autoescape false %}

{{ 'theme.gestion.page_title'|trans({}, 'admin') }}

{% if current_theme is defined and current_theme is not null %}

Liste des sous-thème de "{{ current_theme.name }}". Retour à la liste principale

{% endif %} {% if themes is defined and themes is iterable %} {% for theme in themes %} {% endfor %} {% endif %}
{{ 'theme.label.name'|trans({}, 'admin') }} {{ 'theme.label.children'|trans({}, 'admin') }} {{ 'theme.label.actions'|trans({}, 'admin') }}
{{ theme.name }} {{ theme.children|length }} {{ 'button.edit'|trans({}) }} {{ 'button.delete'|trans({}) }} {% if (current_theme is not defined or current_theme is null) and theme.children|length > 0 %} {{ 'button.list'|trans({}) }} {% endif %}

{{ 'theme.button.create'|trans({}, 'admin') }}

{% endautoescape %} {% endblock %}