{#- SPDX-License-Identifier: Apache-2.0 SPDX-FileCopyrightText: 2025 - 2026 BMO Soluciones, S.A. -#} {% extends 'base.html' %} {% from 'macros.html' import render_pagination %} {% block content %}

{{ _('Tipos de Planilla') }}

{{ _('Nuevo Tipo de Planilla') }}
{% for tipo in tipos_planilla %} {% else %} {% endfor %}
{{ _('Código') }} {{ _('Descripción') }} {{ _('Periodicidad') }} {{ _('Días') }} {{ _('Períodos/Año') }} {{ _('Estado') }} {{ _('Acciones') }}
{{ tipo.codigo }} {{ tipo.descripcion or '-' }} {{ tipo.periodicidad | capitalize }} {{ tipo.dias }} {{ tipo.periodos_por_anio }} {% if tipo.activo %} {{ _('Activo') }} {% else %} {{ _('Inactivo') }} {% endif %}
{{ _('No hay tipos de planilla registrados.') }}
{{ render_pagination(pagination, 'tipo_planilla.index') }}
{% endblock %}