{% extends "base.html" %} {% load menu_tags static show_pagination %} {% block title %}Search Results{% endblock %} {% block crumbs %} {% with app_template=True %} {% show_breadcrumb 0 "_components/breadcrumb.html" 0 %}
  • Search Results
  • {% endwith %} {% endblock %} {% block body %}
    {% for result in search_results %} {% empty %}

    No results found for '{{ request.GET.q }}'

    {% endfor %}
    {% show_pagination page_obj %} {% endblock %}