aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/web_ui/templates/prompts/auto_install_error.html.jinja
blob: 01f5c19f107005e463f9ee282b6046b766871a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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 %}