diff options
Diffstat (limited to 'src/hydrilla/proxy/web_ui/templates')
-rw-r--r-- | src/hydrilla/proxy/web_ui/templates/prompts/auto_install_error.html.jinja | 60 |
1 files changed, 60 insertions, 0 deletions
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) %} + <form class="flex-row" method="POST"> + <input name="next_url" value="{{ next_url }}" type="hidden"> + <input name="payload_id" value="{{ display_info.ref.id }}" type="hidden"> + {% set mapping_ver_id = display_info.mapping_info.ref.id %} + <input name="mapping_ver_id" value="{{ mapping_ver_id }}" type="hidden"> + + <input name="action" value="{{ action }}" type="hidden"> + <button class="{{ button_class }}">{{ button_text }}</button> + </form> +{% endmacro %} + +{% block main %} + <h3> + {{ _('web_ui.prompts.auto_install_error.heading') }} + </h3> + + <p> + {{ + _('web_ui.prompts.auto_install_error.package_{}_failed_to_install') + .format(display_info.mapping_info.info.long_name) + }} + </p> + + <div class="flex-row"> + {% set but_text = _('web_ui.prompts.auto_install_error.disable_button') %} + {{ button_form('disable_mapping', 'red-button', but_text) }} + + <div class="button-row-separator"></div> + + {% set but_text = _('web_ui.prompts.auto_install_error.retry_button') %} + {{ button_form('retry_install', 'green-button', but_text) }} + </div> +{% endblock %} |