diff --git a/plinth/modules/upgrades/static/upgrades.css b/plinth/modules/upgrades/static/upgrades.css deleted file mode 100644 index b08713ca1..000000000 --- a/plinth/modules/upgrades/static/upgrades.css +++ /dev/null @@ -1,15 +0,0 @@ -/* -# SPDX-License-Identifier: AGPL-3.0-or-later -*/ - -.warning { - color: var(--warning-color); -} - -.processing { - color: var(--progress-color); -} - -.normal { - color: var(--neutral-dark-color); -} diff --git a/plinth/modules/upgrades/templates/update-firstboot-progress.html b/plinth/modules/upgrades/templates/update-firstboot-progress.html index 14f57c968..0f3c16155 100644 --- a/plinth/modules/upgrades/templates/update-firstboot-progress.html +++ b/plinth/modules/upgrades/templates/update-firstboot-progress.html @@ -7,11 +7,6 @@ {% load i18n %} {% load static %} -{% block page_head %} - -{% endblock %} - {% block content %}

{% trans "Update" %}

diff --git a/plinth/modules/upgrades/templates/upgrades_configure.html b/plinth/modules/upgrades/templates/upgrades_configure.html index 7e870b0de..19835c4cc 100644 --- a/plinth/modules/upgrades/templates/upgrades_configure.html +++ b/plinth/modules/upgrades/templates/upgrades_configure.html @@ -7,11 +7,6 @@ {% load i18n %} {% load static %} -{% block page_head %} - -{% endblock %} - {% block status %} {{ block.super}} {% comment %} To extend instead of overwrite {% endcomment %} diff --git a/plinth/templates/setup.html b/plinth/templates/setup.html index 665e92fce..2846a0145 100644 --- a/plinth/templates/setup.html +++ b/plinth/templates/setup.html @@ -68,15 +68,18 @@ {% if setup_current_operation.step == 'pre' %}
+ {% trans "Performing pre-install operation" %}
{% elif setup_current_operation.step == 'post' %}
+ {% trans "Performing post-install operation" %}
{% elif setup_current_operation.step == 'install' %} {% with transaction=setup_current_operation.transaction %}
+ {% blocktrans trimmed with package_names=transaction.package_names|join:", " status=transaction.status_string %} Installing {{ package_names }}: {{ status }} {% endblocktrans %} diff --git a/static/themes/default/css/main.css b/static/themes/default/css/main.css index b97dc3464..a742b690a 100644 --- a/static/themes/default/css/main.css +++ b/static/themes/default/css/main.css @@ -889,6 +889,18 @@ img.notification-icon { border-left-color: var(--info-color) } +.warning { + color: var(--warning-color); +} + +.processing { + color: var(--progress-color); +} + +.normal { + color: var(--neutral-dark-color); +} + /* Two different notifications for each small and one for large screens */ .notifications-dropdown { display: none;