23 lines
486 B
Twig
23 lines
486 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Tables{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Tables</h1>
|
|
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<th>Id</th>
|
|
<td>{{ table.id }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<a href="{{ path('app_tables_index') }}">back to list</a>
|
|
|
|
<a href="{{ path('app_tables_edit', {'id': table.id}) }}">edit</a>
|
|
|
|
{{ include('tables/_delete_form.html.twig') }}
|
|
{% endblock %}
|