{% extends 'admin/layout.html.twig' %} {% block content %} {% autoescape false %}

{{ 'article.gestion.page_title'|trans }}

{{ 'article.button.create'|trans }}

{% if articles is defined and articles is iterable %} {% for article in articles %} {% endfor %} {% endif %}
{{ 'label.id'|trans }} {{ 'label.title'|trans }} {{ 'label.is_active'|trans }} {{ 'label.actions'|trans }}
{{ article.id }} {{ article.title }} {{ (article.isActive == true) ? '' ~ 'yes'|trans ~ '' : '' ~ 'no'|trans ~ '' }} {% if is_granted('ROLE_ADMIN') %} {{ 'button.edit'|trans }} {% endif %} {% if is_granted('ROLE_ADMIN') %} {% endif %}
{% endautoescape %} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}