Start switch to Bootstrap 5

- drop jQuery and fontawesome dependencies
- add bootstrap5 and bootstrap-icons
- update fonts mfizz
- update base templates and the first set of other templates
- replace blocktrans and trans with blocktranslate and translate to
  prepare for Django 4
- move hostingpakcage templates to hostingpackages/templates
- update translations
This commit is contained in:
Jan Dittberner 2023-04-16 22:11:32 +02:00
parent 5cf7ef7a23
commit 8e42cb9c18
124 changed files with 10873 additions and 4490 deletions

View file

@ -2,30 +2,46 @@
{% load i18n crispy_forms_tags %}
{% block title %}{{ block.super }} - {% spaceless %}
{% if customer == user %}
{% blocktrans with dbuser=dbuser.name %}Set Database User Password for {{ dbuser }}{% endblocktrans %}
{% else %}
{% blocktrans with dbuser=dbuser.name full_name=customer.get_full_name %}Set Database User Password for {{ dbuser }} of Customer {{ full_name }}{% endblocktrans %}
{% endif %}
{% if customer == user %}
{% blocktranslate with dbuser=dbuser.name %}Set Database User Password for {{ dbuser }}{% endblocktranslate %}
{% else %}
{% blocktranslate with dbuser=dbuser.name full_name=customer.get_full_name trimmed %}
Set Database User Password for {{ dbuser }} of Customer {{ full_name }}
{% endblocktranslate %}
{% endif %}
{% endspaceless %}{% endblock title %}
{% block page_title %}{% spaceless %}
{% if customer == user %}
{% blocktrans with dbuser=dbuser.name %}Set Database User Password <small>for {{ dbuser }}</small>{% endblocktrans %}
{% else %}
{% blocktrans with dbuser=dbuser.name full_name=customer.get_full_name %}Set Database User Password <small>for {{ dbuser }} of Customer {{ full_name }}</small>{% endblocktrans %}
{% endif %}
{% if customer == user %}
{% blocktranslate with dbuser=dbuser.name trimmed %}
Set Database User Password <small>for {{ dbuser }}</small>
{% endblocktranslate %}
{% else %}
{% blocktranslate with dbuser=dbuser.name full_name=customer.get_full_name trimmed %}
Set Database User Password <small>for {{ dbuser }} of Customer {{ full_name }}</small>
{% endblocktranslate %}
{% endif %}
{% endspaceless %}{% endblock page_title %}
{% block content %}
<p>{% if customer == user %}{% trans "Please specify the new password for your database user." %}{% else %}{% trans "Please specify the new password of the database user." %}{% endif %}
{% crispy form %}
<p>{% spaceless %}{% if customer == user %}
{% translate "Please specify the new password for your database user." %}
{% else %}
{% translate "Please specify the new password of the database user." %}
{% endif %}{% endspaceless %}</p>
{% crispy form %}
{% endblock content %}
{% block extra_js %}
<script type="text/javascript">
$(document).ready(function() {
$('input[type=password]').val('').first().focus();
});
</script>
{% endblock extra_js %}
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function () {
let passwordFields = document.querySelectorAll('input[type=password]');
for (const passwordFieldsKey in passwordFields) {
passwordFields[passwordFieldsKey].val('');
}
passwordFields[0].focus();
});
</script>
{% endblock extra_js %}