mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-02 12:53:20 +01:00
224ad8722f
* E-mail owner, Queue CC and submitter on escalation
15 lines
778 B
HTML
15 lines
778 B
HTML
{% extends "helpdesk/emails/base.html" %}
|
|
|
|
{% block header %}Ticket Escalated{% endblock %}
|
|
|
|
{% block content %}
|
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>Hello,</p>
|
|
|
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>A ticket currently assigned to you with a subject of <i>{{ ticket.title }}</i> has been automatically escalated.</p>
|
|
|
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>Please review this ticket and attempt to provide a resolution as soon as possible.</p>
|
|
|
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>If you wish to view this ticket online, you can visit <a href="{{ ticket.get_staff_url }}">{{ ticket.get_staff_url }}</a>.</p>
|
|
|
|
{% endblock %}
|