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

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

    <table class="table table-hover">
        <thead>
            <tr>
                <th>Id</th>
                <th>Descripcion</th>
                <th>Codigo</th>
                <th>Estado</th>
                <th>Actions</th> 
            </tr>
        </thead>
        <tbody>
        {% for municipio in municipios %}
            <tr>
                <td><a href="{{ path('municipio_show', { 'id': municipio.id }) }}">{{ municipio.id }}</a></td>
                <td>{{ municipio.descripcion }}</td>
                <td>{{ municipio.codigo }}</td>
                <td>{{ municipio.estado }}</td>
                <td>
                    <ul>
                        <li>
                            <a href="{{ path('municipio_show', { 'id': municipio.id }) }}">show</a>
                        </li>
                        <li>
                            <a href="{{ path('municipio_edit', { 'id': municipio.id }) }}">edit</a>
                        </li>
                    </ul>
                </td>
            </tr>
        {% endfor %}
        </tbody>
    </table>

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