From 625ae551b9475be1faa7480dfcef6c3cc32df182 Mon Sep 17 00:00:00 2001 From: renaud gaudin Date: Tue, 9 Jan 2024 12:43:09 +0000 Subject: [PATCH] Fixed #353: added Back to Top button on config edit --- manager/manager/templates/configuration_edit.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/manager/manager/templates/configuration_edit.html b/manager/manager/templates/configuration_edit.html index 796cb08..620b2c6 100644 --- a/manager/manager/templates/configuration_edit.html +++ b/manager/manager/templates/configuration_edit.html @@ -9,9 +9,17 @@ width: 48px; height: 48px; } +#back-to-top { + position: fixed; + bottom: 1em; + float: right; + right: 1em; + z-index: 100; +} {% endblock %} {% block content %} + {% if form.errors or form.non_field_errors %}
{% blocktrans %}Your config has errors and can not be saved. Please fix them and retry.{% endblocktrans %}{% if form.non_field_errors %}
{{ form.non_field_errors }}{% endif %}
{% endif %}