{% extends 'base.html.twig' %} {% block title %}Item index{% endblock %} {% block body %}

Item Manager

{% for item in items %} {% endfor %}
Id Title Media Support Box Edition Date Created Date Updated Action
{{ item.id }} {{ item.title }} {{ item.media.label }} {{ item.support.label }} {{ item.box.label }} {{ item.edition.label }} {{ item.createdAt ? item.createdAt|date('Y-m-d H:i:s') : '' }} {{ item.updatedAt ? item.updatedAt|date('Y-m-d H:i:s') : '' }}
Show Edit {% if is_granted('ROLE_ADMIN') %} {% endif %}
{% endblock %}