{% import 'partials/components/ui_macros.html' as ui %} {% call ui.modal_wrapper("debian-log-modal", max_width="700px", padding="24px 28px") %} {{ ui.modal_title(title="Sync-Log – " ~ label, icon="log") }}
Letzter Sync {{ last_run or '—' }} Status {{ ui.status_inline(last_status) }}
{% if issues %}

Validierungsprobleme ({{ issues | length }})

{% for issue in issues %}
{{ issue }}
{% endfor %}
{% else %}
Keine Validierungsprobleme.
{% endif %}
{{ ui.modal_footer_simple() }} {% endcall %}