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:
parent
5cf7ef7a23
commit
8e42cb9c18
124 changed files with 10873 additions and 4490 deletions
|
@ -1,34 +1,44 @@
|
|||
{% extends "managemails/base.html" %}
|
||||
{% load i18n crispy_forms_tags %}
|
||||
{% block title %}{{ block.user }} - {% spaceless %}
|
||||
{% with full_name=customer.get_full_name mailbox=mailbox.username %}
|
||||
{% if customer == user %}
|
||||
{% blocktrans %}Set Password for Mailbox {{ mailbox }}{% endblocktrans %}
|
||||
{% else %}
|
||||
{% blocktrans %}Set Password for Mailbox {{ mailbox }} of Customer {{ full_name }}{% endblocktrans %}
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
{% with full_name=customer.get_full_name mailbox=mailbox.username %}
|
||||
{% if customer == user %}
|
||||
{% blocktranslate %}Set Password for Mailbox {{ mailbox }}{% endblocktranslate %}
|
||||
{% else %}
|
||||
{% blocktranslate trimmed %}
|
||||
Set Password for Mailbox {{ mailbox }} of Customer {{ full_name }}
|
||||
{% endblocktranslate %}
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
{% endspaceless %}{% endblock title %}
|
||||
{% block page_title %}{% spaceless %}
|
||||
{% with full_name=customer.get_full_name mailbox=mailbox.username %}
|
||||
{% if customer == user %}
|
||||
{% blocktrans %}Set Password for Mailbox {{ mailbox }}{% endblocktrans %}
|
||||
{% else %}
|
||||
{% blocktrans %}Set Password for Mailbox {{ mailbox }} of Customer {{ full_name }}{% endblocktrans %}
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
{% with full_name=customer.get_full_name mailbox=mailbox.username %}
|
||||
{% if customer == user %}
|
||||
{% blocktranslate %}Set Password for Mailbox {{ mailbox }}{% endblocktranslate %}
|
||||
{% else %}
|
||||
{% blocktranslate trimmed %}
|
||||
Set Password for Mailbox {{ mailbox }} of Customer {{ full_name }}
|
||||
{% endblocktranslate %}
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
{% endspaceless %}{% endblock page_title %}
|
||||
|
||||
{% block content %}
|
||||
<p>{% if customer == user %}{% trans "Please specify the new password for your mailbox." %}{% else %}{% trans "Please specify the new password for the mailbox." %}{% endif %}</p>
|
||||
{% crispy form %}
|
||||
<p>{% if customer == user %}{% translate "Please specify the new password for your mailbox." %}{% else %}
|
||||
{% translate "Please specify the new password for the mailbox." %}{% endif %}</p>
|
||||
{% crispy form %}
|
||||
{% endblock content %}
|
||||
|
||||
{% block extra_js %}
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('input[type=password]').val('');
|
||||
$('input[type=password]').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 %}
|
Loading…
Add table
Add a link
Reference in a new issue