- implement managemails.forms.multiple_email_validator - implement managemails.forms.AddMailAddressForm - implement managemails.views.AddMailAddress - add URL pattern 'add_mailaddress' to managemails.urls - add template managemails/mailaddress_create.html - add changelog entry
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			934 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			934 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "managemails/base.html" %}
 | |
| {% load i18n crispy_forms_tags %}
 | |
| 
 | |
| {% block title %}{{ block.super }} - {% spaceless %}
 | |
| {% if user == customer %}
 | |
| {% blocktrans %}Add new Mail Address{% endblocktrans %}
 | |
| {% else %}
 | |
| {% blocktrans with full_name=customer.get_full_name %}
 | |
| Add new Mail Address for Customer {{ full_name }}
 | |
| {% endblocktrans %}
 | |
| {% endif %}
 | |
| {% endspaceless %}{% endblock title %}
 | |
| 
 | |
| {% block page_title %}{% spaceless %}
 | |
| {% if user == customer %}
 | |
| {% blocktrans %}Add new Mail Address{% endblocktrans %}
 | |
| {% else %}
 | |
| {% blocktrans with full_name=customer.get_full_name %}
 | |
| Add new Mail Address for Customer {{ full_name }}
 | |
| {% endblocktrans %}
 | |
| {% endif %}
 | |
| {% endspaceless %}{% endblock page_title %}
 | |
| 
 | |
| {% block content %}
 | |
| {% crispy form %}
 | |
| {% endblock content %}
 | |
| 
 | |
| {% block extra_js %}
 | |
| <script type="text/javascript">
 | |
| $(document).ready(function() {
 | |
|   $('input[type=text]').first().focus();
 | |
| });
 | |
| </script>
 | |
| {% endblock extra_js %}
 |