show.html.twig
872 Bytes
{% extends 'base.html.twig' %}
{% block body %}
<h1>Seccion</h1>
<table>
<tbody>
<tr>
<th>Id</th>
<td>{{ seccion.id }}</td>
</tr>
<tr>
<th>Descripcion</th>
<td>{{ seccion.descripcion }}</td>
</tr>
<tr>
<th>Codigo</th>
<td>{{ seccion.codigo }}</td>
</tr>
</tbody>
</table>
<ul>
<li>
<a href="{{ path('seccion_index') }}">Back to the list</a>
</li>
<li>
<a href="{{ path('seccion_edit', { 'id': seccion.id }) }}">Edit</a>
</li>
<li>
{{ form_start(delete_form) }}
<input type="submit" value="Delete">
{{ form_end(delete_form) }}
</li>
</ul>
{% endblock %}