From 45e5cf8dc3ca936e2db8e7e45689d0a3331aad43 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Thu, 8 Sep 2022 17:59:40 +0200 Subject: [proxy] make package auto-installation work --- .../prompts/auto_install_error.html.jinja | 60 ++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/hydrilla/proxy/web_ui/templates/prompts/auto_install_error.html.jinja (limited to 'src/hydrilla/proxy/web_ui/templates/prompts') diff --git a/src/hydrilla/proxy/web_ui/templates/prompts/auto_install_error.html.jinja b/src/hydrilla/proxy/web_ui/templates/prompts/auto_install_error.html.jinja new file mode 100644 index 0000000..01f5c19 --- /dev/null +++ b/src/hydrilla/proxy/web_ui/templates/prompts/auto_install_error.html.jinja @@ -0,0 +1,60 @@ +{# +SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0 + +Proxy web UI page that informs about failure of automatic package installation. + +This file is part of Hydrilla&Haketilo. + +Copyright (C) 2022 Wojtek Kosior + +Dual licensed under +* GNU General Public License v3.0 or later and +* Creative Commons Attribution Share Alike 4.0 International. + +You can choose to use either of these licenses or both. + + +I, Wojtek Kosior, thereby promise not to sue for violation of this +file's licenses. Although I request that you do not make use this code +in a proprietary work, I am not going to enforce this in court. +#} +{% extends "base.html.jinja" %} + +{% block title %} + {{ _('web_ui.prompts.auto_install_error.title') }} +{% endblock %} + +{% macro button_form(action, button_class, button_text) %} +
+ + + {% set mapping_ver_id = display_info.mapping_info.ref.id %} + + + + +
+{% endmacro %} + +{% block main %} +

+ {{ _('web_ui.prompts.auto_install_error.heading') }} +

+ +

+ {{ + _('web_ui.prompts.auto_install_error.package_{}_failed_to_install') + .format(display_info.mapping_info.info.long_name) + }} +

+ +
+ {% set but_text = _('web_ui.prompts.auto_install_error.disable_button') %} + {{ button_form('disable_mapping', 'red-button', but_text) }} + +
+ + {% set but_text = _('web_ui.prompts.auto_install_error.retry_button') %} + {{ button_form('retry_install', 'green-button', but_text) }} +
+{% endblock %} -- cgit v1.2.3