diff --git a/dashmachine/settings_system/routes.py b/dashmachine/settings_system/routes.py index 7b29cbb..9f1c34e 100644 --- a/dashmachine/settings_system/routes.py +++ b/dashmachine/settings_system/routes.py @@ -17,7 +17,7 @@ from dashmachine.paths import ( user_data_folder, template_apps_folder, ) -from dashmachine.version import version +from dashmachine.version import version, revision_number settings_system = Blueprint("settings_system", __name__) @@ -52,6 +52,7 @@ def settings(): user_form=user_form, template_apps=",".join(template_apps), version=version, + revision_number=revision_number, users=users, config_readme=config_readme, ) diff --git a/dashmachine/static/images/apps/alertmanager.png b/dashmachine/static/images/apps/alertmanager.png index a3a9601..4b72f56 100644 Binary files a/dashmachine/static/images/apps/alertmanager.png and b/dashmachine/static/images/apps/alertmanager.png differ diff --git a/dashmachine/static/images/apps/aria2.png b/dashmachine/static/images/apps/aria2.png index c2a1452..d004fde 100644 Binary files a/dashmachine/static/images/apps/aria2.png and b/dashmachine/static/images/apps/aria2.png differ diff --git a/dashmachine/static/images/apps/cloudcmd.png b/dashmachine/static/images/apps/cloudcmd.png index b5da320..e9440b5 100644 Binary files a/dashmachine/static/images/apps/cloudcmd.png and b/dashmachine/static/images/apps/cloudcmd.png differ diff --git a/dashmachine/static/images/apps/filerun.png b/dashmachine/static/images/apps/filerun.png index ea391a1..69dbcf1 100644 Binary files a/dashmachine/static/images/apps/filerun.png and b/dashmachine/static/images/apps/filerun.png differ diff --git a/dashmachine/static/images/apps/guacamole.png b/dashmachine/static/images/apps/guacamole.png index 5946fb7..dea8e86 100644 Binary files a/dashmachine/static/images/apps/guacamole.png and b/dashmachine/static/images/apps/guacamole.png differ diff --git a/dashmachine/static/images/apps/icon.png b/dashmachine/static/images/apps/icon.png index 4f06a32..24617e4 100644 Binary files a/dashmachine/static/images/apps/icon.png and b/dashmachine/static/images/apps/icon.png differ diff --git a/dashmachine/static/images/apps/karma.png b/dashmachine/static/images/apps/karma.png index 38ea875..2a87c81 100644 Binary files a/dashmachine/static/images/apps/karma.png and b/dashmachine/static/images/apps/karma.png differ diff --git a/dashmachine/static/images/apps/netdata.png b/dashmachine/static/images/apps/netdata.png index 1de841f..a2bfb55 100644 Binary files a/dashmachine/static/images/apps/netdata.png and b/dashmachine/static/images/apps/netdata.png differ diff --git a/dashmachine/static/images/apps/openwrt.png b/dashmachine/static/images/apps/openwrt.png index 5a7a52f..be22a93 100644 Binary files a/dashmachine/static/images/apps/openwrt.png and b/dashmachine/static/images/apps/openwrt.png differ diff --git a/dashmachine/static/images/apps/pfsense.png b/dashmachine/static/images/apps/pfsense.png index b45292a..fc02425 100644 Binary files a/dashmachine/static/images/apps/pfsense.png and b/dashmachine/static/images/apps/pfsense.png differ diff --git a/dashmachine/static/images/apps/prometheus.png b/dashmachine/static/images/apps/prometheus.png index a3a9601..4b72f56 100644 Binary files a/dashmachine/static/images/apps/prometheus.png and b/dashmachine/static/images/apps/prometheus.png differ diff --git a/dashmachine/static/images/apps/statping.png b/dashmachine/static/images/apps/statping.png index 9fb125f..432abab 100644 Binary files a/dashmachine/static/images/apps/statping.png and b/dashmachine/static/images/apps/statping.png differ diff --git a/dashmachine/templates/error_pages/unauthorized.html b/dashmachine/templates/error_pages/unauthorized.html index d45df2e..eb3b875 100644 --- a/dashmachine/templates/error_pages/unauthorized.html +++ b/dashmachine/templates/error_pages/unauthorized.html @@ -1,4 +1,5 @@ {% extends "main/base.html" %} +{% from 'global_macros.html' import button %} {% block content %} @@ -6,6 +7,20 @@
This user account is not in the access group allowed to view this page.
+ + {{ button( + float="center", + href=url_for('user_system.login'), + text="Go to login" + ) }} + + {{ button( + float="center", + href="javascript:history.back()", + text="Go back" + ) }}