diff --git a/osinaweb/db.sqlite3 b/osinaweb/db.sqlite3 index a57fe75a..3e8ab5a0 100644 Binary files a/osinaweb/db.sqlite3 and b/osinaweb/db.sqlite3 differ diff --git a/osinaweb/osinacore/templates/customer_index.html b/osinaweb/osinacore/templates/customer_index.html index 9e7adbd5..de85d055 100644 --- a/osinaweb/osinacore/templates/customer_index.html +++ b/osinaweb/osinacore/templates/customer_index.html @@ -149,43 +149,11 @@ - {% for ticket in customer_open_tickets %} - - - -
- -

{{ticket.title }}

-
- - {% if ticket.unread_updates_count > 0 %} -
-
-

{{ticket.unread_updates_count}}

-
-
- {% endif %} -
- - - -

{{ticket.ticket_number}}

- - - -

{{ticket.regarding}}

- - - - {% if ticket.ticketupdate_set.all %} -

{{ticket.ticketupdate_set.last.date_added}}
by {{ticket.ticketupdate_set.last.added_by.first_name}}

- {% endif %} - - - + + {% for ticket in customer_open_tickets %} + {% include 'details_templates/partials/customer-ticket-display.html' %} + {% endfor %} - {% endfor %} @@ -279,5 +247,62 @@ }); + + {% endblock %} \ No newline at end of file diff --git a/osinaweb/osinacore/templates/index.html b/osinaweb/osinacore/templates/index.html index 77c8910b..e82d6522 100644 --- a/osinaweb/osinacore/templates/index.html +++ b/osinaweb/osinacore/templates/index.html @@ -42,7 +42,7 @@ {% for ticket in open_tickets %} - {% include 'details_templates/partials/ticket-display.html' %} + {% include 'details_templates/partials/staff-ticket-display.html' %} {% endfor %} @@ -292,7 +292,7 @@