show.html.twig 1.26 KB
{% extends 'base.html.twig' %}

{% block body %}
    <h1>Ver Persona</h1>

    <table class="table table-bordered">
        <tbody>
            <tr>
                <th>Id</th>
                <td><input disabled value="{{ persona.id }}"></input></td>
            </tr>
            <tr>
                <th>Nombre</th>
                <td><input disabled value="{{ persona.nombre }}"></input></td>
            </tr>
            <tr>
                <th>Apellido</th>
                <td><input disabled value="{{ persona.apellido }}"></input></td>
            </tr>
            <tr>
                <th>Cedula</th>
                <td><input disabled value="{{ persona.cedula }}"></input></td>
            </tr>
        </tbody>
    </table>
<div style="text-align:right">
    <ul>
        <a class="btn btn-primary" role="button" href="{{ path('persona_index') }}"><span class="glyphicon glyphicon-circle-arrow-left"></span></a>
        
        <a class="btn btn-primary" role="button" href="{{ path('persona_edit', { 'id': persona.id }) }}"><span class="glyphicon glyphicon-pencil"></span></a>
        
        {{ form_start(delete_form) }}
             <input type="submit" class="btn btn-primary" value="Eliminar"/>
        {{ form_end(delete_form) }}

        </ul>
</div>
{% endblock %}