mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-17 15:54:23 +00:00
37 lines
851 B
Twig
37 lines
851 B
Twig
{% extends '::base.html.twig' %}
|
|
|
|
{% block body -%}
|
|
<h1>Role</h1>
|
|
|
|
<table class="record_properties">
|
|
<tbody>
|
|
<tr>
|
|
<th>Id</th>
|
|
<td>{{ entity.id }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Name</th>
|
|
<td>{{ entity.name|localize_translatable_string }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Active</th>
|
|
<td>{{ entity.active }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<ul class="record_actions">
|
|
<li>
|
|
<a href="{{ path('chill_event_admin_role') }}">
|
|
Back to the list
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('chill_event_admin_role_edit', { 'id': entity.id }) }}">
|
|
Edit
|
|
</a>
|
|
</li>
|
|
<li>{{ form(delete_form) }}</li>
|
|
</ul>
|
|
{% endblock %}
|