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.
30 lines
728 B
30 lines
728 B
{% 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 %}
|
|
{% include 'includes/exposition/search_result.html' %}
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|
|
{% block paginator %}
|
|
|
|
{% with page_obj=page_obj queries=queries %}
|
|
{% include 'includes/search_paginator.html' %}
|
|
{% endwith %}
|
|
|
|
{% endblock %} |