{% extends 'base.html' %} {% load static %} {% load i18n %} {% block content %}

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

{% for news in objs %}
{% if news.newsimage_set.all.first.image %} ... {% else %} ... {% endif %}

{% if news.newsCA %} {% trans 'Новость Гражданского Альянса Казахстана' %}| {% elif news.region %} {{ news.region }}| {% else %} {% endif %} {% if news.category %} {{ news.category }} {% endif %}

{{ news.title|truncatewords:10 }}

{{ news.date_publ|date }} | Просмотров: {{ news.get_view_count }}

{% trans 'Продолжить читать' %}
{% endfor %} {% if objs|length > 4 or objs.number != 1 %} {% include 'coreapp/paginator/paginator.html' %} {% endif %}
{% endblock %}