chore: initialize public repository
CI / checks (push) Has been cancelled

This commit is contained in:
maddin
2026-03-22 12:57:09 +00:00
commit 6fbd1bb3c2
142 changed files with 19826 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{% macro workhours_target_warning_banner(warning) -%}
{% if warning and warning.at_risk %}
<section class="workhours-warning-banner"
data-component="workhours-warning"
data-workhours-warning="{{ warning.start_date.isoformat() }}-{{ warning.end_date.isoformat() }}-{{ warning.target_minutes }}">
<p class="workhours-warning-text">Achtung: Arbeitsstundenziel wird ggf. nicht erreicht</p>
<button type="button"
class="workhours-warning-close"
aria-label="Hinweis ausblenden"
data-action="warning-close">×</button>
</section>
{% endif %}
{%- endmacro %}