{% extends 'admin/detail_form.html' %} {% load i18n label comments click_to_call %} {% block extrahead %} {{ block.super }} {% endblock %} {% block title %}{{ title_form }}{% endblock %} {% block content_title %}

Ticket #{{obj.id}} ({{obj.get_status_display}})

{% if request.GET.nobuttons != "1" %} {% ifnotequal obj.status 0 %} {% endifnotequal %} {% if perms.ticket.add_ticketassistance %} {% endif %} {% ifequal obj.status 0 %}{% if perms.ticket.can_reopen_tickets %} {% endif %}{% endifequal %} {% endif %}
{% endblock %} {% block content %} {% if is_popup %} {% if request.GET.is_comment_list == "1" %} {% include "admin/ticket/ticket/detail_form_ticketcomment.html" %} {% endif %} {% if request.GET.is_comment_list != "1" %} {% if request.GET.title != "1" %} {% include "admin/ticket/ticket/detail_form_short_ticketdetail.html" %} {% include "admin/ticket/ticket/detail_form_ticketdocument.html" %} {% endif %} {% endif %} {% if request.GET.title == "1" %} {% include "admin/ticket/ticket/detail_form_long_ticketdetail.html" %} {% include "admin/ticket/ticket/detail_form_ticketdocument.html" %} {% include "admin/ticket/ticket/detail_form_ticketcomment.html" %} {% endif %} {% else %} {% include "admin/ticket/ticket/detail_form_long_ticketdetail.html" %} {% include "admin/ticket/ticket/detail_form_ticketdocument.html" %} {% include "admin/ticket/ticket/detail_form_ticketcomment.html" %} {% endif %}
{% for log in logs_changing %} {% if forloop.first %}

{% trans 'Change History' %}

{% endif %}

{{ log.date_create|date:"d/m/Y H:i" }} - {% trans 'Changed By' %} {{ log.creator }}

  • {{ log.field }} changed from {{ log.old_value|safe }} to {{ log.new_value|safe }} .
{% if forloop.last %}
{% endif %} {% endfor %}
{% endblock %}