aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/web_ui/templates/items/item_viewversion.html.jinja
blob: edfb772088ceb88f879d70c4e73a117344948c78 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{#
SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0

Proxy web UI item version view page template.

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 "items/item_view.html.jinja" %}

{% block main_info %}
  {% if file_installation_error is defined %}
    {{ error_note(_('web_ui.err.file_installation_error')) }}
  {% endif %}

  {% if uninstall_disallowed is defined %}
    {{ error_note(_('web_ui.err.uninstall_disallowed')) }}
  {% endif %}

  {% if repo_communication_error is defined %}
    {{ error_note(_('web_ui.err.repo_communication_error')) }}
  {% endif %}

  {{ super() }}

  <p>
    {{
      _('web_ui.items.single_version.version_{}')
            .format(versioned_identifier_with_repo(version_display_info))
    }}
  </p>

  <div class="horizontal-separator"></div>

  {% block main_info_bulk %}
    <p>
      TODO: add more info...
    </p>

    <div class="horizontal-separator"></div>
  {% endblock %}

  <p>
    {% if version_display_info.active == ActiveStatus.REQUIRED %}
      {% block item_required_msg required %}{% endblock %}
    {% elif version_display_info.active == ActiveStatus.AUTO %}
      {% block item_auto_activated_msg required %}{% endblock %}
    {% else %}
      {# version_display_info.active == ActiveStatus.NOT_ACTIVE #}
      {% block item_not_activated_msg required %}{% endblock %}
    {% endif %}
  </p>

  {% set install_but_classes   = ['green-button'] %}
  {% set uninstall_but_classes = ['green-button'] %}
  {% if version_display_info.installed == InstalledStatus.FAILED_TO_INSTALL %}
    {%
      set install_text =
          _('web_ui.items.single_version.retry_install_button')
    %}
    {%
      set uninstall_text =
          _('web_ui.items.single_version.leave_uninstalled_button')
    %}
    <div>{% block item_install_failed_msg required %}{% endblock %}</div>
  {% else %}
    {% set install_text   = _('web_ui.items.single_version.install_button') %}
    {% set uninstall_text = _('web_ui.items.single_version.uninstall_button') %}
    {% if version_display_info.installed == InstalledStatus.INSTALLED %}
      {% do install_but_classes.append('disabled-button') %}
      {%
        if uninstall_disallowed is defined or
            version_display_info.active == ActiveStatus.REQUIRED
      %}
        {% do uninstall_but_classes.append('disabled-button') %}
      {% endif %}
    {% else %}
      {# version_display_info.installed == InstalledStatus.NOT_INSTALLED #}
      {% do uninstall_but_classes.append('disabled-button') %}
    {% endif %}
  {% endif %}{# else/ version_display_info.installed == InstalledStatus.FA... #}

  {% set uninstall_fields = {'action': 'uninstall_item_version'} %}
  {% set install_fields   = {'action': 'install_item_version'} %}

  {{
    button_row([
        (uninstall_but_classes, uninstall_text, uninstall_fields),
        (install_but_classes,   install_text,   install_fields)
    ])
  }}
{% endblock main_info %}