diff --git a/helpdesk/templates/helpdesk/ticket_cc_add.html b/helpdesk/templates/helpdesk/ticket_cc_add.html index d209efb5..0615b31d 100644 --- a/helpdesk/templates/helpdesk/ticket_cc_add.html +++ b/helpdesk/templates/helpdesk/ticket_cc_add.html @@ -18,59 +18,55 @@ {% block helpdesk_body %}

{% trans 'Add Ticket CC' %}

-
-
-
-
- {% trans 'To automatically send an email to a user or e-mail address when this ticket is updated, select the user or enter an e-mail address below.' %} -
- -
- - +
+
+ + {% trans 'To automatically send an email to a user or e-mail address when this ticket is updated, select the user or enter an e-mail address below.' %} +
+
+ + - -
-
-

{% trans 'Add Email' %}

-
-
-
{% for field in form_email %} -
-
{{ field }}
- {% if field.errors %}
{{ field.errors }}
{% endif %} - {% if field.help_text %}
{{ field.help_text }}
{% endif %} - {% endfor %}
-
- - {% csrf_token %}
-
-
-

{% trans 'Add User' %}

-
-
-
{% for field in form_user %} -
-
{{ field }}
- {% if field.errors %}
{{ field.errors }}
{% endif %} - {% if field.help_text %}
{{ field.help_text }}
{% endif %} - {% endfor %}
-
- - {% csrf_token %}
-
-
-
- -
- -
+ +
+
+

{% trans 'Add Email' %}

+
+
+
{% for field in form_email %} +
+
{{ field }}
+ {% if field.errors %}
{{ field.errors }}
{% endif %} + {% if field.help_text %}
{{ field.help_text }}
{% endif %} + {% endfor %}
+
+ + {% csrf_token %}
- +
+

{% trans 'Add User' %}

+
+
+
{% for field in form_user %} +
+
{{ field }}
+ {% if field.errors %}
{{ field.errors }}
{% endif %} + {% if field.help_text %}
{{ field.help_text }}
{% endif %} + {% endfor %}
+
+ + {% csrf_token %}
+
+
+
+ +
+ + {% endblock %}