{% extends "base.html" %} {% load i18n static base_tags django_bootstrap5 %} {% block bootstrap5_extra_head %} {{ block.super }} {% endblock %} {% block page_title %}{% trans "Search Results" %}{% endblock %} {% block side_navigation %}{% endblock %} {% block content %}

{% blocktrans trimmed %} Showing {{ total }} result(s) in {{ search_type }} matching your query: {{ query }} {% endblocktrans %}

    {% for result in results %}
  • {% with result.get_absolute_url as result_url %}

    {% if result_url %} {{ result }} {% else %} {{ result }} {% endif %}

    {# {% if result.content != result|stringformat:"s" %}#} {#

    {{ result.content|truncatewords_html:20|safe }}

    #} {# {% endif %}#} {# {% if result_url %}#} {# {% trans "read more" %}#} {# {% endif %}#} {% endwith %}
  • {% endfor %}
{% if results.has_other_pages %} {% bootstrap_pagination results extra=request.GET.urlencode size="sm" %} {% endif %}
{% endblock %}