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

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

    <table>
        <thead>
            <tr>
                <th>Id</th>
                <th>Identificacion</th>
                <th>Nombre</th>
                <th>Apellido</th>
                <th>Correo</th>
                <th>Telefono</th>
                <th>Actions</th>
            </tr>
        </thead>
        <tbody>
        {% for personaProyecto in personaProyectos %}
            <tr>
                <td><a href="{{ path('personaproyecto_show', { 'id': personaProyecto.id }) }}">{{ personaProyecto.id }}</a></td>
                <td>{{ personaProyecto.identificacion }}</td>
                <td>{{ personaProyecto.nombre }}</td>
                <td>{{ personaProyecto.apellido }}</td>
                <td>{{ personaProyecto.correo }}</td>
                <td>{{ personaProyecto.telefono }}</td>
                <td>
                    <ul>
                        <li>
                            <a href="{{ path('personaproyecto_show', { 'id': personaProyecto.id }) }}">show</a>
                        </li>
                        <li>
                            <a href="{{ path('personaproyecto_edit', { 'id': personaProyecto.id }) }}">edit</a>
                        </li>
                    </ul>
                </td>
            </tr>
        {% endfor %}
        </tbody>
    </table>

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