{{ 'insurance.title' | translate }}

{{ 'insurance.subtitle' | translate }}

{{ 'insurance.kpi_monthly' | translate }}

{{ totalMonthly() | number:'1.2-2' }} CHF

{{ 'insurance.kpi_count' | translate }}

{{ insurances().length }}

{{ 'insurance.kpi_covered' | translate }}

{{ coveredTypes().size }} / {{ insuranceTypes.length }}

{{ 'insurance.checklist_title' | translate }}

@for (type of checklist; track type) {
@if (coveredTypes().has(type)) { } @else { } {{ ('insurance.types.' + type) | translate }}
}

{{ 'insurance.checklist_hint' | translate }}

{{ 'insurance.list_title' | translate }}

@if (loading()) {
{{ 'insurance.loading' | translate }}
} @else if (insurances().length === 0) {

{{ 'insurance.no_entries' | translate }}

} @else {
@for (ins of insurances(); track ins.id) {
{{ ('insurance.types.' + ins.insurance_type) | translate }}

{{ ins.insurer }}

@if (ins.policy_number) {

{{ ins.policy_number }}

}

{{ monthlyEquivalent(ins) | number:'1.2-2' }} CHF/{{ 'insurance.month_short' | translate }}

}
}
@if (showModal()) {

{{ (editTarget() ? 'insurance.edit_title' : 'insurance.create_title') | translate }}

} @if (deleteTarget()) {

{{ 'common.delete_confirm_title' | translate }}

{{ 'common.delete_confirm_text' | translate }}

}