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.
 
 
 
 
 
 

27 lines
612 B

{% extends 'base_catalog.html' %}
{% load static %}
{% load i18n %}
{% load template_filters %}
{% if single_page %}
{% endif %}
{% block content_list %}
{% if object_list %}
{% if single_page %}
{% with exposition=object_list.0 %}
{% include 'includes/event_object.html' %}
{% endwith %}
{% else %}
{% with object_list=object_list %}
{% include 'includes/event_list.html' %}
{% endwith %}
{% endif %}
{% else %}
<h1> Ничего не найдено</h1>
{% endif %}
{% endblock %}