{#- SPDX-License-Identifier: Apache-2.0 SPDX-FileCopyrightText: 2025 - 2026 BMO Soluciones, S.A. -#} {% extends "base.html" %} {% block content %}
{{ _('Nombre') }}: {{ planilla.nombre }}
{{ _('Descripción') }}: {{ planilla.descripcion or '-' }}
{{ _('Tipo de Planilla') }}: {% if planilla.tipo_planilla %} {{ planilla.tipo_planilla.codigo }} - {{ planilla.tipo_planilla.descripcion or '' }} {% else %} - {% endif %}
{{ _('Moneda') }}: {% if planilla.moneda %} {{ planilla.moneda.codigo }} - {{ planilla.moneda.nombre }} {% else %} - {% endif %}
{{ _('Estado') }}: {% if planilla.activo %} {{ _('Activo') }} {% else %} {{ _('Inactivo') }} {% endif %}
{{ _('Regla de Vacaciones') }}: {% if planilla.vacation_policy %} {{ planilla.vacation_policy.codigo }} - {{ planilla.vacation_policy.nombre }} {% else %} - {% endif %}
{{ percepciones_count }}
{{ _('percepciones asignadas') }}
{{ deducciones_count }}
{{ _('deducciones asignadas') }}
{{ prestaciones_count }}
{{ _('prestaciones asignadas') }}