{% extends 'base_catalog.html' %} {% load i18n %} {% load template_filters %} {% block bread_scrumbs %} {% endblock %} {% block page_title %}

{% trans 'Новости' %}:

{% endblock %} {% block content_list %}
{{ article_filter_form.theme }}
{{ article_filter_form.tag.label }}
{% for news in object_list %}
{% include 'includes/article/news_preview.html' with obj=news %}

{{ news.main_title }}

{{ news.preview }} {{ news.created|date:"d E Y" }}{% with event=news.get_event %}{% if event %}{{ event.name }}{% endif %}{% endwith %}
{% endfor %}
{% endblock %} {% block paginator %} {% include 'includes/catalog_paginator.html' with page_obj=page_obj %} {% endblock %}