{% extends 'news/templatetags/templatetags_news_content.html' %} {% load cms_tags sekizai_tags menu_tags i18n static thumbnail %} {% block extra_style %}{% endblock extra_style %} {% block news_content %}

Latest news

{% for article in news %}

{{ article.title }}

{{ article.author }}

{{ article.summary|safe }}

{{ article.content|safe }}

{{ article.category }}

{{ article.created_at }}

Tags

{% for tag in article.tag.all %}

{{ tag.name }}

{% endfor %}

{{ article.source_url }}

Gallery

{% for image in article.news_gallery.all %} {{ image.title }} {% endfor %}

Attachments

{% for attachment in article.news_attachments.all %} {{ attachment.name }} {% endfor %} {% endfor %} {% endblock news_content %} {% block extra_script %}{% endblock extra_script %}