{% extends 'base_catalog.html' %} {% load thumbnail %} {% 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 blog in object_list %}
{% include 'includes/article/article_preview.html' with obj=blog %}

{{ blog.main_title }}

{{ blog.preview }} {{ blog.created|date:"d E Y" }}{% if blog.tag.all.exists %}{% include 'includes/article_tags.html' with obj=blog %}{% endif %}
{% endfor %}
{% endblock %} {% block paginator %} {% include 'includes/catalog_paginator.html' with page_obj=page_obj %} {% endblock %}