{% comment %}Shared countdown banner - handles both active_countdown and maintenance_countdown{% endcomment %} {% load i18n static %} {% if active_countdown or maintenance_countdown %} {% if active_countdown %} {# Regular countdown banner - shown to all users before maintenance starts #}
{{ active_countdown.message }}
{% trans "Scheduled maintenance is planned. The system will stop responding in:" %} {% trans "Counting down…" %}
{% trans "You can keep working, but remember to save your data regularly." %} {% if active_countdown.maintenance_until %}
{% blocktrans with minutes=active_countdown.maintenance_duration_minutes %}Estimated maintenance duration: {{ minutes }} minutes (actual time may vary).{% endblocktrans %} {% else %}
{% trans "Maintenance duration: indefinite — the site will stay blocked until an administrator unblocks it." %} {% endif %}
{% endif %} {% if maintenance_countdown %} {# Maintenance countdown banner - shown only to superusers during maintenance #}
{% blocktrans with msg=maintenance_countdown.message %}System under maintenance — {{ msg }}{% endblocktrans %} {% if maintenance_countdown.maintenance_until %} {% trans "Counting down…" %} {% else %} {% trans "Indefinite — remove the countdown to unblock the site." %} {% endif %}
{% endif %} {% endif %}