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

Box Manager

{% if is_granted('ROLE_ADMIN') %} Create New Box {% endif %}
{% for box in boxes %} {% endfor %}
Label Date Created Date Updated Action
{{ box.label }} {{ box.createdAt ? box.createdAt|date('Y-m-d H:i:s') : '' }} {{ box.updatedAt ? box.updatedAt|date('Y-m-d H:i:s') : '' }}
Show {% if is_granted('ROLE_ADMIN') %} Edit {% endif %}
{% endblock %}