35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
|
{% 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 %}
|
||
|
{% 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 %}
|
||
|
{% 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 %}
|
||
|
{% 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 %}
|