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