{% extends "helpdesk/base.html" %}{% load i18n %} {% block helpdesk_title %}{% trans "Ticket CC Settings" %}{% endblock %} {% block helpdesk_body %}{% blocktrans with ticket.title as ticket_title and ticket.id as ticket_id %}

Ticket CC Settings

The following people will receive an e-mail whenever {{ ticket_title }} is updated. Some people can also view or edit the ticket via the public ticket views.

You can add a new recipient to the list or delete any of the items below as required.

{% endblocktrans %}
{% trans "Ticket CC List" %}
{% for person in copies_to %} {% endfor %}
{% trans "E-Mail Address or Helpdesk User" %} {% trans "View?" %} {% trans "Update?" %} {% trans "Delete" %}
{{ person.display }} {{ person.can_view }} {{ person.can_update }}

{% endblock %}