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

This commit is contained in:
maddin
2026-03-22 12:55:55 +00:00
commit 9794362f39
143 changed files with 19832 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{% macro kpi_bar(items, extra_class='') -%}
<section class="kpi-bar {{ extra_class }}">
{% for item in items %}
<p class="kpi-bar__item {% if item.get('show_edit') %}kpi-bar__item--editable{% endif %}">
<span class="kpi-bar__label">{{ item.label }}:</span>
<strong class="kpi-bar__value {% if item.get('value_class') %}{{ item.get('value_class') }}{% endif %}">{{ item.value }}</strong>
{% if item.get('show_edit') %}
<button type="button"
class="kpi-bar__edit js-toggle-weekly-target-editor"
aria-label="Wochen-Soll bearbeiten"
title="Wochen-Soll bearbeiten">
<img class="dash-icon" src="/static/icons/edit.svg" alt="" />
</button>
{% endif %}
</p>
{% endfor %}
</section>
{%- endmacro %}