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

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

        
    <table class="table table-hover">
        <tbody>
            <tr>
                <th>Id</th>
                <td>{{ pruebaed.id }}</td>
            </tr>
            <tr>
                <th>Nombre</th>
                <td>{{ pruebaed.nombre }}</td>
            </tr>
            <tr>
                <th>Apellido</th>
                <td>{{ pruebaed.apellido }}</td>
            </tr>
            <tr>
                <th>Cedula</th>
                <td>{{ pruebaed.cedula }}</td>
            </tr>
            <tr>
                <th>Edad</th>
                <td>{{ pruebaed.edad }}</td>
            </tr>
            <tr>
                <th>Direccion</th>
                <td>{{ pruebaed.direccion }}</td>
            </tr>
        </tbody>
    </table>

    <ul>
        
            <a class="btn btn-default" role="button" href="{{ path('pruebaed_index') }}"> <span class="glyphicon glyphicon-arrow-left"></span></a>      
            <a class="btn btn-default" role="button" href="{{ path('pruebaed_edit', { 'id': pruebaed.id }) }}"><span class="glyphicon glyphicon-pencil"></span></a>
                
            {{ form_start(delete_form) }}
                <input type="submit" value="Delete">
            {{ form_end(delete_form) }}
        
    </ul>
{% endblock %}