diff options
Diffstat (limited to 'src/hydrilla/proxy/web_ui/templates/packages/load_from_disk.html.jinja')
-rw-r--r-- | src/hydrilla/proxy/web_ui/templates/packages/load_from_disk.html.jinja | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/hydrilla/proxy/web_ui/templates/packages/load_from_disk.html.jinja b/src/hydrilla/proxy/web_ui/templates/packages/load_from_disk.html.jinja index 1f3c246..e2d012c 100644 --- a/src/hydrilla/proxy/web_ui/templates/packages/load_from_disk.html.jinja +++ b/src/hydrilla/proxy/web_ui/templates/packages/load_from_disk.html.jinja @@ -19,7 +19,7 @@ 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" %} +{% extends "base.html.jinja" %} {% block title %} {{ _('web_ui.packages.load_from_disk.title') }} {% endblock %} {% block style %} {{ super() }} @@ -34,17 +34,17 @@ in a proprietary work, I am not going to enforce this in court. <form method="POST" enctype="multipart/form-data"> <div> <input id="packages_zipfile" name="packages_zipfile" type="file" - accept=".zip,application/zip" required=""> + accept=".zip,application/zip" required=""> </div> <div> <label class="green-button" for="packages_zipfile"> - {{ _('web_ui.packages.load_from_disk.choose_zipfile_button') }} + {{ _('web_ui.packages.load_from_disk.choose_zipfile_button') }} </label> </div> <div> <button class="green-button"> - {{ _('web_ui.packages.load_from_disk.install_button') }} + {{ _('web_ui.packages.load_from_disk.install_button') }} </button> </div> </form> -{%- endblock %} +{% endblock %} |