You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
{% extends 'base_catalog.html' %}
|
|
{% load i18n %}
|
|
{% load template_filters %}
|
|
|
|
{% block bread_scrumbs %}
|
|
<div class="bread-crumbs">
|
|
<a href="/">{% trans 'Главная страница' %}</a>
|
|
<strong>{% trans 'Поиск' %}</strong>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block page_title %}
|
|
<div class="page-title">
|
|
<h1>{% trans 'Поиск' %}:</h1>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content_list %}
|
|
{% with query=object_list %}
|
|
{% if query %}
|
|
{% include 'client/includes/exposition/search_result.html' %}
|
|
{% else %}
|
|
<p class="message-not-found">
|
|
<span>
|
|
<i class="fa fa-exclamation-triangle"></i>
|
|
</span>
|
|
<span class="message">
|
|
{% trans "Увы, событий, соответствующих выбранным фильтрам, нет в каталоге.<br> Попробуйте укрупнить параметры поиска" %}
|
|
</span>
|
|
</p>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|
|
{% block paginator %}
|
|
|
|
{% with page_obj=page_obj queries=queries %}
|
|
{% include 'client/includes/search_paginator.html' %}
|
|
{% endwith %}
|
|
|
|
{% endblock %} |