From 64414141f7dbaf7313ddeb77dcb30a4dc7ac7ef4 Mon Sep 17 00:00:00 2001 From: Garret Wassermann Date: Fri, 15 Feb 2019 19:37:46 -0500 Subject: [PATCH] Update ticket_cc_add template for bootstrap4 --- .../templates/helpdesk/ticket_cc_add.html | 100 +++++++++--------- 1 file changed, 48 insertions(+), 52 deletions(-) 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 %}