{% extends "dialog_info.html" %} {% import 'partials/components/ui_macros.html' as ui %} {% block dialog_id %}archlinux-info-modal{% endblock %} {% block dialog_width %}640{% endblock %} {% block dialog_title %}{{ label }}{% endblock %} {% block dialog_body %} {# ── Status ──────────────────────────────────────────────────────── #}
Status
Zustand
{{ ui.status_inline(last_status) }}
Letzter Sync
{{ last_run or '—' }}
{# ── Repository ───────────────────────────────────────────────────── #} {% if info.published %}
Repository
Pakete
{{ info.pkg_count }}
Speicher (aktuell)
{{ info.current_size_fmt }}
Version {{ info.current_version or '—' }}
{% if info.version_count %}
Speicher (tatsächlich)
{{ info.total_size_fmt }}
inkl. {{ info.version_count }} Version{{ 'en' if info.version_count != 1 else '' }}{% if info.staging_exists %} + staging{% endif %}
{% else %}
Staging
{% if info.staging_exists %}vorhanden{% else %}—{% endif %}
{% endif %}
{% if info.version_count %}
Gehaltene Versionen {{ info.versions | join(', ') }}{% if info.staging_exists %}, staging{% endif %}
{% endif %} {% else %}
Noch nicht synchronisiert.
{% endif %} {# ── Fehler ───────────────────────────────────────────────────────── #} {% if issues %}
Letzte Fehler ({{ issues | length }})
{% for issue in issues %}
{{ issue }}
{% endfor %}
{% endif %} {% endblock %}