mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
28 lines
945 B
Twig
28 lines
945 B
Twig
{% extends '@ChillPerson/Admin/layout.html.twig' %}
|
|
|
|
{% block layout_wvm_content %}
|
|
{% embed '@ChillMain/CRUD/_index.html.twig' %}
|
|
{% block table_entities_thead_tr %}
|
|
<th>{{ 'Id'|trans }}</th>
|
|
<th>{{ 'Title'|trans }}</th>
|
|
<th> </th>
|
|
{% endblock %}
|
|
|
|
{% block table_entities_tbody %}
|
|
{% for entity in entities %}
|
|
<tr>
|
|
<td>{{ entity.id }}</td>
|
|
<td>{{ entity.title|localize_translatable_string }}</td>
|
|
<td>
|
|
<ul class="record_actions">
|
|
<li>
|
|
<a href="{{ chill_path_add_return_path('chill_crud_social_goal_edit', { 'id': entity.id }) }}" class="sc-button bt-edit"></a>
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
{% endembed %}
|
|
{% endblock %}
|