{% load autocomplete %}
{% for item in items %} {% include "./item.html" %} {% endfor %} {% if query_too_short %} {% use_string "type_at_least_n_characters" custom_strings as str_template %} {% substitute_string str_template n=minimum_search_length %} {% elif not items %} {% use_string "no_results" custom_strings %} {% endif %} {% if items|length != total_results %}
{% use_string "more_results" custom_strings as more_results_template %} {% substitute_string more_results_template page_size=items|length total=total_results %}
{% endif %}
{% if items|length != total_results %} {% use_string "more_results" custom_strings as more_results_template %} {% substitute_string more_results_template page_size=items|length total=total_results %} {% else %} {% use_string "available_results" custom_strings %} {% endif %}