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.
29 lines
779 B
29 lines
779 B
{% extends 'base_catalog.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block bread_scrumbs %}
|
|
<div class="bread-crumbs">
|
|
<a href="/">{% trans 'Главная страница' %}</a>
|
|
<strong>{% trans 'Места' %}</strong>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% if object_list %}
|
|
{% block head_scripts %}
|
|
{% include "client/includes/banners/tops_head_js.html" %}
|
|
{% endblock head_scripts %}
|
|
{% endif %}
|
|
|
|
{% block page_title %}
|
|
<div class="page-title">
|
|
<h1>{% trans 'Места' %}</h1>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content_list %}
|
|
{% include 'client/includes/place/place_list.html' with object_list=object_list %}
|
|
{% endblock %}
|
|
|
|
{% block paginator %}
|
|
{% include 'includes/catalog_paginator.html' with page_obj=page_obj %}
|
|
{% endblock %}
|
|
|