FreedomBox/plinth/modules/power/templates/power_busy_warning.html
Sunil Mohan Adapa f6f5b7a478
power: Refactor display of package manager busy alerts
Tests:

- Trigger the message using code change and observe the messages displayed.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2024-12-12 12:47:59 +02:00

21 lines
595 B
HTML

{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load i18n %}
{% if pkg_manager_is_busy %}
<div class="alert alert-danger d-flex align-items-center">
<div class="me-2">
<span class="fa fa-exclamation-triangle" aria-hidden="true"></span>
<span class="visually-hidden">{% trans "Caution:" %}</span>
</div>
<div>
{% blocktrans trimmed %}
Currently an installation or upgrade is running. Consider waiting
until it's finished before shutting down or restarting.
{% endblocktrans %}
</div>
</div>
{% endif %}