mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-11 09:10:46 +01:00
13 lines
594 B
HTML
13 lines
594 B
HTML
|
{% extends "helpdesk/emails/base.html" %}
|
||
|
|
||
|
{% block header %}Ticket Closed{% 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 closed.</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 %}
|