{% extends 'base_catalog.html' %} {% load static thumbnail %} {% load i18n %} {% block og %} {% endblock %} {% block bread_scrumbs %} {% endblock %} {% block page_title %} {% endblock %} {% block content_list %}
{% include 'includes/article/article_logo.html' with obj=object %}

{{ object.main_title }}

{{ object.publish_date|date:"d E Y" }}{% if object.get_event %}{{ object.get_event.name }}{% endif %} {% if request.user.is_admin %} {% trans 'изменить' %} {% endif %}
{% include "client/includes/sharing_block.html" %}
{{ object.description|safe }}
{% trans 'Источник' %}: {{ object.author }} {% if object.tag.all.exists %}
{% include 'client/includes/article_tags.html' with obj=object %}
{% endif %}
{% if object.get_similar %}
{% for news in object.get_similar %}
{% include 'includes/show_logo.html' with obj=news %}

{{ news.main_title }}

{{ news.preview|safe }}

{{ news.publish_date|date:"d E Y" }}{% if news.get_event %}{{ news.get_event.name }}<{% endif %}
{% endfor %}
{% endif %} {% endblock %}