{% extends "coderedcms/pages/web_page.html" %} {% load bootstrap4 i18n coderedcms_tags %} {% block title %}{% trans 'Search for' %} “{{form.s.value}}”{% endblock %} {% block content %}
{% if not form.s.value %}

{% trans 'Search' %}

{% else %}

{% trans 'Search for' %} “{{form.s.value}}”

{%endif%}
{% if not settings.coderedcms.LayoutSettings.navbar_search %}
{% bootstrap_form form size='large' layout='inline' %}
{% endif %} {% if pagetypes %} {% query_update request.GET 'p' None as qs_nop %}
{% endif %}
{% if results_paginated.object_list %} {% for page in results_paginated %}
{% with page=page.specific %} {% include page.search_template %} {% endwith %}
{% endfor %} {% include "coderedcms/includes/pagination.html" with items=results_paginated %} {% else %} {% if form.s.value %}

{% trans 'No results found.' %}

{% endif %} {% endif %}
{% endblock %}