mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-23 08:23:54 +01:00
10158056b6
* Add e-mail templates for submitter-based emails * Add send_multipart_email() to lib.py - sends HTML/plain emails * Add 'Take' link to unassigned tickets on ticket detail view * Add Description to ticket detail view * When resolving ticket, copy comment into ticket resolution * Display resolution and 'Accept & Close' link on ticket detail view * Create scripts/ folder * Added POP/IMAP details to Queue model * Added get_email.py; polls POP/IMAP boxes & creates ticket * Added keyword search functionality
10 lines
325 B
HTML
10 lines
325 B
HTML
{% extends "helpdesk/emails/base.html" %}
|
|
|
|
{% block header %}E-Mail Heading Here{% endblock %}
|
|
|
|
{% block content %}
|
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>Dear User,</p>
|
|
|
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>This is some content.</p>
|
|
{% endblock %}
|