mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
33 lines
717 B
Twig
33 lines
717 B
Twig
{% extends '::base.html.twig' %}
|
|
|
|
{% block body -%}
|
|
<h1>BlopEntity2</h1>
|
|
|
|
<table class="record_properties">
|
|
<tbody>
|
|
<tr>
|
|
<th>Id</th>
|
|
<td>{{ entity.id }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>CustomfieldData</th>
|
|
<td>{{ entity.customFieldData }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<ul class="record_actions">
|
|
<li>
|
|
<a href="{{ path('blopentity2') }}">
|
|
Back to the list
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('blopentity2_edit', { 'id': entity.id }) }}">
|
|
Edit
|
|
</a>
|
|
</li>
|
|
<li>{{ form(delete_form) }}</li>
|
|
</ul>
|
|
{% endblock %}
|