Found {{ total_results }} results
{% if request.GET.q %} for "{{ request.GET.q }}"{% endif %}
{% if request.GET.genre %} in {{ request.GET.genre }}{% endif %}
{% include 'partials/_anime_list.html' with anime_list=search_results.results %}
{% if total_pages > 1 %}
{% if current_page > 1 %}
{% with current_page|add:"-1" as prev_page %}
<
{% endwith %}
{% endif %}
{% for p in total_pages|get_page_range:current_page %}
{% if p == '...' %}
...
{% else %}
{{ p }}
{% endif %}
{% endfor %}
{% if current_page < total_pages %}
{% with current_page|add:"1" as next_page %}
>
{% endwith %}
{% endif %}