{% extends 'base.html.twig' %} {% block title %}Paises{% endblock %} {% block page_title %}Paises{% endblock %} {% block body %} {# Page Header #}

Catilogo de Paises

Gestion de paises disponibles para proveedores

{% if is_granted('ROLE_OPERADOR') %} Nuevo Pais {% endif %}
{# Search & Filter Card #}
{# Table Card #}

Listado de Paises

{{ total }} registros encontrados

{% for it in items %} {% else %} {% endfor %}
Cidigo ISO-2 Nombre Estado Acciones
{{ it.codigo }} {{ it.codigoIso2 ?? '-' }} {{ it.nombre }} {% if it.activo %} Activo {% else %} Inactivo {% endif %}
{% if is_granted('ROLE_OPERADOR') %} Editar
{% endif %}

No hay paises registrados

Agrega un nuevo pais para comenzar

{# Pagination #} {% if pages > 1 %} {% endif %}
{% endblock %}