{% 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 %} {% blocktrans %}Add Mailbox to Hosting Package {{ package }}{% endblocktrans %} {% else %} {% blocktrans %}Add Mailbox to Hosting Package {{ package }} of Customer {{ full_name }}{% endblocktrans %} {% endif %} {% endwith %} {% endspaceless %}{% endblock title %} {% block page_title %}{% spaceless %} {% with full_name=customer.get_full_name package=hostingpackage.name %} {% if customer == user %} {% blocktrans %}Add Mailbox to Hosting Package {{ package }}{% endblocktrans %} {% else %} {% blocktrans %}Add Mailbox to Hosting Package {{ package }} of Customer {{ full_name }}{% endblocktrans %} {% endif %} {% endwith %} {% endspaceless %}{% endblock page_title %} {% block content %}

{% if customer == user %}{% trans "Please specify the password for your new mailbox." %}{% else %}{% trans "Please specify the password for the new mailbox." %}{% endif %}

{% crispy form %} {% endblock content %} {% block extra_js %} {% endblock extra_js %}