show.html.twig 1018 Bytes
{% extends 'base.html.twig' %}

{% block body %}
    <h1>Municipio</h1>

          
        <table class="table">
         <thead class="blue-grey lighten-4">
         <tbody>
            <tr>
                <th>Id</th>
                <td>{{ municipio.id }}</td>
            </tr>
            <tr>
                <th>Descripcion</th>
                <td>{{ municipio.descripcion }}</td>
            </tr>
            <tr>
                <th>Codigo</th>
                <td>{{ municipio.codigo }}</td>
            </tr>
          </tbody>
        </thead>
    </table>

    <ul>
    
       <a href="{{ path('municipio_index') }}" class="btn btn-info" role="button">Volver</a>
            
         <a href="{{ path('municipio_index') }}" class="btn btn-info" role="button">Editar</a>
            
        
            {{ form_start(delete_form) }}
            &nbsp &nbsp 
                <input type="submit" value="Eliminar">
            {{ form_end(delete_form) }}
        
    </ul>
    
</div>
{% endblock %}