Jan Dittberner
5429055f0d
- extract common code into managemails.forms.MailAddressFieldMixin - move code from forms into managemails.models.MailAddress - implement managemails.models.MailboxManager.unused and unused_or_own - implement managemails.forms.EditMailAddressForm - add managemails.views.EditMailAddress - add URL pattern 'edit_mailaddress' to managemails.urls - add template managemails/mailaddress_edit.html - add changelog entry
26 lines
806 B
HTML
26 lines
806 B
HTML
{% extends "managemails/base.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block title %}{{ block.super }} - {% spaceless %}
|
|
{% if user == customer %}
|
|
{% blocktrans %}Change target of Mail Address{% endblocktrans %}
|
|
{% else %}
|
|
{% blocktrans with full_name=customer.get_full_name %}
|
|
Change target of Mail Address for Customer {{ full_name }}
|
|
{% endblocktrans %}
|
|
{% endif %}
|
|
{% endspaceless %}{% endblock title %}
|
|
|
|
{% block page_title %}{% spaceless %}
|
|
{% if user == customer %}
|
|
{% blocktrans %}Change target of Mail Address{% endblocktrans %}
|
|
{% else %}
|
|
{% blocktrans with full_name=customer.get_full_name %}
|
|
Change target of Mail Address for Customer {{ full_name }}
|
|
{% endblocktrans %}
|
|
{% endif %}
|
|
{% endspaceless %}{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
{% crispy form %}
|
|
{% endblock content %}
|