forked from extern/django-helpdesk
c97a255155
* Added superuser 'System settings' page with links to admin * Added ability to ignore e-mail addresses (using wildcards) from the e-mail parser * Added link to ignore email address from ticket details page (for superusers only) * Cleaned up report output by styling text & labels in the same way as tables in other views * Cleaned up dashboard lists to show text in place of tickets if no tickets are found * Added ability to sort in reverse order NOTE: REQUIRES A 'syncdb' TO CREATE THE EMAIL-IGNORE TABLES. No other DB changes were made.
20 lines
931 B
HTML
20 lines
931 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_title %}{% trans "Change System Settings" %}{% endblock %}
|
|
|
|
{% block helpdesk_body %}{% blocktrans %}
|
|
<h2>System Settings</h2>
|
|
|
|
<p>The following items can be maintained by you or other superusers:</p>{% endblocktrans %}
|
|
|
|
<ul>
|
|
<li><a href='../ignore/'>{% trans "E-Mail Ignore list" %}</a></li>
|
|
<li><a href='/admin/helpdesk/queue/'>{% trans "Maintain Queues" %}</a></li>
|
|
<li><a href='/admin/helpdesk/presetreply/'>{% trans "Maintain Pre-Set Replies" %}</a></li>
|
|
<li><a href='/admin/helpdesk/kbcategory/'>{% trans "Maintain Knowledgebase Categories" %}</a></li>
|
|
<li><a href='/admin/helpdesk/kbitem/'>{% trans "Maintain Knowledgebase Items" %}</a></li>
|
|
<li><a href='/admin/helpdesk/emailtemplate/'>{% trans "Maintain E-Mail Templates" %}</a></li>
|
|
<li><a href='/admin/auth/user/'>{% trans "Maintain Users" %}</a></li>
|
|
</ul>
|
|
{% endblock %}
|