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.
21 lines
790 B
21 lines
790 B
{% extends 'client/base_catalog.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block bread_scrumbs %}
|
|
<div class="bread-crumbs">
|
|
<a href="{% url 'index' %}">{% trans 'Главная страница' %}</a>
|
|
<a href="{{ object.catalog }}">{% trans 'Места' %}</a>
|
|
<a href="{{ object.catalog }}country/{{ object.country.url }}/">{{ object.country }}</a>
|
|
<a href="{{ object.catalog }}city/{{ object.city.url }}/">{{ object.city }}</a>
|
|
<a href="{{ object.get_absolute_url }}">{{ object.name }}</a>
|
|
<strong>{% trans 'Все события' %}</strong>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content_list %}
|
|
<h1>{% trans 'Все события' %} {{ object.name }}</h1>
|
|
|
|
{% for item in object_list %}
|
|
{{ item }}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|