{% load bloomerp %} {% if query %}
Searching: {{ search_label }} "{{ query }}" {% if search_scope.module %} Module: {{ search_scope.module }} {% endif %} {% if search_scope.model %} Model: {{ search_scope.model }} {% endif %}
{% if search_type == "slash" and slash_error %}
{{ slash_error }}
{% elif search_type == "routes" %} {% if route_results %} {% for route in route_results %}
{% if route.url %} {{ route.name|highlight_query:highlight_query }} {{ route.description }} {% if route.module %} {{ route.module }} {% endif %} {% else %}
{{ route.name|highlight_query:highlight_query }} {{ route.path }} {% if route.module %} {{ route.module }} {% endif %}
{% endif %}
{% endfor %} {% else %}
No routes found.
{% endif %} {% elif search_type == "users" %} {% if user_results %} {% for item in user_results %}
{{ item.display|highlight_query:highlight_query }} @{{ item.user.username }}
{% endfor %} {% else %}
No users found.
{% endif %} {% else %} {% if object_results %} {% for group in object_results %}
{{ group.model_label }} {% for module_label in group.module_labels %} {{ module_label }} {% endfor %}
{% for obj in group.objects %}
{{ obj|highlight_query:highlight_query }}
{% endfor %} {% endfor %} {% else %}
No results found.
{% endif %} {% endif %} {% if results_truncated %}
Showing first {{ results_limit }} results.
{% endif %} {% else %}
Start typing to search.
{% endif %}