{% extends "helpdesk/base.html" %} {% load i18n helpdesk_util %} {% block helpdesk_title %}{% trans "Merge Tickets" %}{% endblock %} {% block h1_title %}{% endblock %} {% block helpdesk_head %} {{ ticket_select_form.media.css }} {% endblock %} {% block helpdesk_breadcrumb %} {% endblock %} {% block helpdesk_body %}

{% trans "Merge Tickets" %}

{{ ticket_select_form.tickets.label_tag }} {{ ticket_select_form.tickets }} {{ ticket_select_form.tickets.errors }}

{% blocktrans %} Choose the ticket which will be conserved and then, for each information, you can decide to use a data from another ticket to merge. I you don't select a data on a row, the information from the main ticket will stay unchanged. {% endblocktrans %}

{% blocktrans %} The follow-ups and attachments from the merged tickets will be moved to the main ticket.
Involved users (the ticket submitter and emails in CC) will also be added in the main ticket CC list.
However, ticket dependencies from the merged ticket won't be applied to the main ticket. {% endblocktrans %}

{% if tickets %}
{% csrf_token %}
{% for ticket in tickets %} {% endfor %} {% for attr, display_attr in ticket_attributes %} {% include 'helpdesk/include/ticket_merge_row.html' %} {% endfor %} {% for custom_field in custom_fields %} {% include 'helpdesk/include/ticket_merge_row.html' with display_attr=custom_field.label attr=custom_field.name %} {% endfor %}
{% trans "Fields" %}
{% endif %} {% endblock %} {% block helpdesk_js %} {{ ticket_select_form.media.js }} {% endblock %}