Jan Dittberner
8e42cb9c18
- 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
47 lines
No EOL
1.8 KiB
HTML
47 lines
No EOL
1.8 KiB
HTML
{% extends "managemails/base.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
{% block title %}{{ block.user }} - {% spaceless %}
|
|
{% with full_name=customer.get_full_name package=hostingpackage.name %}
|
|
{% if customer == user %}
|
|
{% blocktranslate %}Add Mailbox to Hosting Package {{ package }}{% endblocktranslate %}
|
|
{% else %}
|
|
{% blocktranslate trimmed %}
|
|
Add Mailbox to Hosting Package {{ package }} of Customer {{ full_name }}
|
|
{% endblocktranslate %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endspaceless %}{% endblock title %}
|
|
{% block page_title %}{% spaceless %}
|
|
{% with full_name=customer.get_full_name package=hostingpackage.name %}
|
|
{% if customer == user %}
|
|
{% blocktranslate %}Add Mailbox to Hosting Package {{ package }}{% endblocktranslate %}
|
|
{% else %}
|
|
{% blocktranslate trimmed %}
|
|
Add Mailbox to Hosting Package {{ package }} of Customer {{ full_name }}
|
|
{% endblocktranslate %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endspaceless %}{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<p>{% if customer == user %}
|
|
{% translate "Please specify the password for your new mailbox." %}
|
|
{% else %}
|
|
{% translate "Please specify the password for the new mailbox." %}
|
|
{% endif %}</p>
|
|
{% crispy form %}
|
|
{% endblock content %}
|
|
|
|
{% block extra_js %}
|
|
<script type="text/javascript">
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
let passwordFields = document.querySelectorAll("input[type=password]");
|
|
|
|
for (const fieldKey in passwordFields) {
|
|
passwordFields[fieldKey].val('');
|
|
}
|
|
|
|
passwordFields[0].focus();
|
|
});
|
|
</script>
|
|
{% endblock extra_js %} |