diff --git a/README b/README index 3cfba4fb..544a7cdb 100644 --- a/README +++ b/README @@ -39,6 +39,9 @@ case-insensitive searches. It's recommended that you use PostgreSQL or MySQL if possible. For more information, see this note in the Django documentation: http://docs.djangoproject.com/en/dev/ref/databases/#sqlite-string-matching +When you try to do a keyword search using sqlite, a message will be displayed +to alert you to this shortcoming. There is no way around it, sorry. + ######################### 3. Upgrading from previous versions ######################### diff --git a/templates/helpdesk/ticket_list.html b/templates/helpdesk/ticket_list.html index 221098a4..33ac4488 100644 --- a/templates/helpdesk/ticket_list.html +++ b/templates/helpdesk/ticket_list.html @@ -111,6 +111,7 @@ $(document).ready(function() { +{{ search_message|safe }}
{% trans "Tickets" %} | ||||||
# | {% trans "Pr" %} | {% trans "Title" %} | {% trans "Queue" %} | {% trans "Status" %} | {% trans "Created" %} | {% trans "Owner" %} |
---|