{% load i18n %} {% load bloomerp %} {% if query %}
{% blocktrans %}Searching:{% endblocktrans %} {{ 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 %}
{% translate 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 %}
{% blocktrans %}No routes found.{% endblocktrans %}
{% endif %} {% elif search_type == "users" %} {% if user_results %} {% for item in user_results %}
{{ item.display|highlight_query:highlight_query }} @{{ item.user.username }}
{% endfor %} {% else %}
{% blocktrans %}No users found.{% endblocktrans %}
{% 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 %}
{% blocktrans %}No results found.{% endblocktrans %}
{% endif %} {% endif %} {% if results_truncated %}
{% blocktrans %}Showing first {{ results_limit }} results.{% endblocktrans %}
{% endif %} {% else %}
{% blocktrans %}Start typing to search.{% endblocktrans %}
{% endif %}