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
1.2 KiB
27 lines
1.2 KiB
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% if news_list %}
|
|
<div class="rq-to-hide">
|
|
<div class="s-comments">
|
|
<div class="sect-title blog_link"><span>{% trans 'Последние новости' %} {{ object.name }}</span><a class="button more" href="{{ event.get_news_url }}">{% trans 'Все новости' %}</a></div>
|
|
<div class="cat-list sc-comments">
|
|
{% for news in news_list %}
|
|
<div class="cl-item">
|
|
<div class="acticle_list">
|
|
<a href="{{ news.get_permanent_url }}" title="">
|
|
<span class="cli-pict">
|
|
{% include 'includes/show_logo.html' with obj=news %}
|
|
</span>
|
|
</a>
|
|
<h3><a href="{{ news.get_permanent_url }}" title="">{{ news.main_title }}</a></h3>
|
|
<p>{{ news.preview|safe }}</p>
|
|
<strong><span>{{ news.publish_date|date:"d E Y" }}</span><a href="{{ event.get_permanent_url }}" title=""><b>{{ event.name|safe }}</b></a></strong>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|