show.html.twig
945 Bytes
{% extends 'base.html.twig' %}
{% block body %}
<h1>Estado</h1>
<table class="table table-bordered">
<tbody>
<tr>
<th>Id</th>
<td>{{ estado.id }}</td>
</tr>
<tr>
<th>Codigo</th>
<td>{{ estado.codigo }}</td>
</tr>
<tr>
<th>Descripcion</th>
<td>{{ estado.descripcion }}</td>
</tr>
</tbody>
</table>
<ul>
<li>
<a class="btn btn-default" href="{{ path('estado_index') }}" role="button">Volver</a>
<a class="btn btn-default" href="{{ path('estado_edit', { 'id': estado.id }) }}">Editar</a>
{{ form_start(delete_form) }}
<input type="submit" value="Delete">
{{ form_end(delete_form) }}
</li>
</ul>
{% endblock %}