diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-08-25 12:43:29 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-09-28 12:54:53 +0200 |
commit | 503e546b2b0c9dba505a4e7940f257d41ad95f67 (patch) | |
tree | c17f245f8a826d4d385923557681ad372fb58b03 /src/hydrilla/proxy/web_ui/templates/repos | |
parent | 4dbbb2aec204a5cccc713e2e2098d6e0a47f8cf6 (diff) | |
download | haketilo-hydrilla-503e546b2b0c9dba505a4e7940f257d41ad95f67.tar.gz haketilo-hydrilla-503e546b2b0c9dba505a4e7940f257d41ad95f67.zip |
[proxy] properly flag failed package installations in sqlite db
Diffstat (limited to 'src/hydrilla/proxy/web_ui/templates/repos')
-rw-r--r-- | src/hydrilla/proxy/web_ui/templates/repos/show_single.html.jinja | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hydrilla/proxy/web_ui/templates/repos/show_single.html.jinja b/src/hydrilla/proxy/web_ui/templates/repos/show_single.html.jinja index b032765..baecfea 100644 --- a/src/hydrilla/proxy/web_ui/templates/repos/show_single.html.jinja +++ b/src/hydrilla/proxy/web_ui/templates/repos/show_single.html.jinja @@ -27,6 +27,11 @@ in a proprietary work, I am not going to enforce this in court. {% include 'include/checkbox_tricks_style.css.jinja' %} {% endblock %} {% block main %} + {% if file_installation_error is defined %} + <aside class="error-note"> + {{ _('web_ui.err.file_installation_error') }} + </aside> + {% endif %} {% if repo_communication_error is defined %} <aside class="error-note"> {{ _('web_ui.err.repo_communication_error') }} |