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

Letzte Fehler ({{ issues | length }})

{% for issue in issues %}
{{ issue }}
{% endfor %}
{% endif %}

Speicher & Pakete

{% if info.published %} Aktuelle Version {{ info.current_version or '—' }} Speicher (aktuell) {{ info.current_size_fmt }} Pakete {{ info.pkg_count }} {% else %} Status Noch nicht synchronisiert {% endif %} {% if info.version_count %} Gehaltene Versionen {{ info.versions | join(', ') }}{% if info.staging_exists %}, staging{% endif %} Speicher (tatsächlich) {{ info.total_size_fmt }} {% endif %} {% if info.staging_exists and not info.version_count %} Staging vorhanden (Sync läuft oder unterbrochen) {% endif %}
{{ ui.modal_footer_simple() }} {% endcall %}