27 lines
806 B
HTML
27 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 %}
|