{% extends "admin_base" %} {% block title %}{{ resource.title | default(value="Éléments") }}{% endblock %} {% block breadcrumb %} / Administration / {{ resource.title | default(value="Éléments") }} {% endblock %} {% block content %}
{% if entries is defined and entries | length > 0 %}
{% for key, value in entries | first %} {% if key != "id" and key != "password" and key != "password_hash" %} {% endif %} {% endfor %} {% for entry in entries %} {% for key, value in entry %} {% if key != "id" and key != "password" and key != "password_hash" %} {% endif %} {% endfor %} {% endfor %}
id{{ key }}Actions
#{{ entry.id }} {% if value == true %} Oui {% elif value == false %} Non {% elif value %} {{ value }} {% else %} {% endif %}
Détail Modifier
{% else %}

Aucune entrée

Commencez par créer un élément.

Créer le premier
{% endif %}
{% endblock %}