Add column for DocGeneratorTemplate.index

This commit is contained in:
Marc Ducobu 2021-08-19 23:23:29 +02:00
parent 0479ddb42b
commit 043e865eb0

View File

@ -3,6 +3,7 @@
{% block layout_wvm_content %}
{% embed '@ChillMain/CRUD/_index.html.twig' %}
{% block table_entities_thead_tr %}
<th></th>
<th>{{ 'Title'|trans }}</th>
<th>{{ 'File'|trans }}</th>
{% endblock %}
@ -10,6 +11,7 @@
{% block table_entities_tbody %}
{% for entity in entities %}
<tr>
<td>{{ entity.id }}</td>
<td>{{ entity.name | localize_translatable_string }}</td>
<td>{{ entity.file }}</td>
</tr>