{% extends "base.html" %} {% block title %}{{ t('Mitarbeiter') }}{% endblock %} {% block content %}
| {{ t('Name') }} | {{ t('AHV-Nr.') }} | {{ t('Geburtsdatum') }} | {{ t('Monatslohn') }} | QST % | {{ t('Lohnausweis') }} | |
|---|---|---|---|---|---|---|
| {{ e.name }} | {{ e.ahv_nr }} | {{ e.birthdate|datum if e.birthdate else '⚠ ' + t('fehlt') }} | {{ e.monthly_wage_rp|chf }} | {{ e.qst_pct or '' }} | {% for y in years %} {{ y }} {% endfor %} | {{ t('Bearbeiten') }} |
{{ t('Noch keine Mitarbeiter erfasst.') }}
{% endif %} {% endblock %}