{% extends 'base_admin.html.twig' %} {% block title %}{{ item.name}}{% endblock %} {% block body %}

{{ item.name}}

Id {{ item.id }}
Name {{ item.name }}
Description {{ item.description }}
State {{ item.state ? 'Yes' : 'No' }}
CreationDate {{ item.creationDate ? item.creationDate|date('Y-m-d H:i:s') : '' }}

Attributs

{% for attribute in item.attributes %} {% else %} {% endfor %}
Id Name Description State Type
{{ attribute.id }} {{ attribute.name }} {{ attribute.description }} {{ attribute.state ? 'Yes' : 'No' }} {{ attribute.type }}
no records found
Modifier
Retour {{ include('admin/item/_delete_form.html.twig') }} {% endblock %}