{% extends request.is_ajax|yesno:"base_ajax.html,base.html" %} {% block title %}Search Help{% endblock %} {% block content %}
{% if not request.is_ajax %}

Search Help

{% endif %}

Searching Events

Searches for entire query in: name description and notes

You can search for an event by event_id by entering an integer, or using the format N01234

On the search results page you can also specify the date range for the start_date of the event

Events are sorted in reverse start_date order (most recent events at the top)

Searching People/Organisations/Venues

Searches for entire search phrase in: name email address notes and phone

You can search for an entry by id by entering an integer

Entries are sorted in alphabetical order by name

{% if perms.RIGS.view_invoice %}

Searching Invoices

Searches for entire search phrase in: event__name

You can search for an event's invoice by entering the event_id using the format N01234

You can search for an invoice by invoice_id using the format #01234

Entering a raw integer will search by both invoice_id and event_id

Entries are sorted in reverse invoice_date order

{% endif %}
{% endblock %}