mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-29 19:33:20 +01:00
0068eccbf4
* Updated jQuery to 1.2.6 * Add jQuery UI 1.6b for interface effects as needed * 'Smoothness' theme from ThemeRoller.com added. * Clean up 'Filter' dialog on Ticket List, long way to go still. * Uses tabs to save a query or load a saved query * Lots of misuse of space here, can be cleaned up somewhat still. * Add ability for users to save filters/queries * Saved queries can be shared, so other users can use them * Users can run saved queries instead of re-filtering * Filter mechanism in Ticket List had to be reworked significantly * Merged 3rd party licenses into LICENSE.3RDPARTY * Updated messages files for EN locale To update, ensure you run './manage.py syncdb' to add the SavedSearch table.
19 lines
794 B
HTML
19 lines
794 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_title %}{% trans "Delete Saved Query" %}{% endblock %}
|
|
|
|
{% block helpdesk_body %}{% blocktrans with query.title as query_title %}
|
|
<h2>Delete Query</h2>
|
|
|
|
<p>Are you sure you want to delete this saved filter (<em>{{ query_title }}</em>)? To re-create it, you will need to manually re-filter your ticket listing.</p>
|
|
{% endblocktrans %}
|
|
|
|
{% if query.shared %}{% blocktrans %}
|
|
<p>You have shared this query, so other users may be using it. If you delete it, they will have to manually create their own query.</p>
|
|
{% endblocktrans %}{% endif %}
|
|
|
|
{% blocktrans %}<p><a href='../'>No, Don't Delete It</a></p>
|
|
|
|
<form method='post' action='./'><input type='submit' value='Yes - Delete It' /></form>
|
|
{% endblocktrans %}{% endblock %}
|