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