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

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

    <table>
        <tbody>
            <tr>
                <th>Id</th>
                <td>{{ tutorInstitucional.id }}</td>
            </tr>
            <tr>
                <th>Carta_aceptacion_ruta</th>
                <td>{{ tutorInstitucional.cartaaceptacionruta }}</td>
            </tr>
        </tbody>
    </table>

    <ul>
        <li>
            <a href="{{ path('tutorinstitucional_index') }}">Back to the list</a>
        </li>
        <li>
            <a href="{{ path('tutorinstitucional_edit', { 'id': tutorInstitucional.id }) }}">Edit</a>
        </li>
        <li>
            {{ form_start(delete_form) }}
                <input type="submit" value="Delete">
            {{ form_end(delete_form) }}
        </li>
    </ul>
{% endblock %}