index.html.twig 1.13 KB
{% extends 'base.html.twig' %}

{% block body %}
    <h1>Tutorestudios list</h1>

    <table>
        <thead>
            <tr>
                <th>Id</th>
                <th>Año_grado</th>
                <th>Actions</th>
            </tr>
        </thead>
        <tbody>
        {% for tutorEstudio in tutorEstudios %}
            <tr>
                <td><a href="{{ path('tutorestudios_show', { 'id': tutorEstudio.id }) }}">{{ tutorEstudio.id }}</a></td>
                <td>{{ tutorEstudio.añogrado }}</td>
                <td>
                    <ul>
                        <li>
                            <a href="{{ path('tutorestudios_show', { 'id': tutorEstudio.id }) }}">show</a>
                        </li>
                        <li>
                            <a href="{{ path('tutorestudios_edit', { 'id': tutorEstudio.id }) }}">edit</a>
                        </li>
                    </ul>
                </td>
            </tr>
        {% endfor %}
        </tbody>
    </table>

    <ul>
        <li>
            <a href="{{ path('tutorestudios_new') }}">Create a new tutorEstudio</a>
        </li>
    </ul>
{% endblock %}