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

Library index

{% for library in libraries %} {% else %} {% endfor %}
Id Title Date Created Date Updated actions
{{ library.id }}
    {% for item in library.item %} {{ item.title }} | {{item.media.label}} | {{item.support.label}} {% endfor %}
{{ library.createdAt ? library.createdAt|date('Y-m-d H:i:s') : '' }} {{ library.updatedAt ? library.updatedAt|date('Y-m-d H:i:s') : '' }}
Show Edit
no records found
{% endblock %}