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

News Category list all

{% for category in categories %}

{{ category.name }}

{% for article in category.news_category.all %} {% if article.published %} {{ article.title }}
{{ article.author }}
{{ article.summary }}
{{ article.content }}

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 %} {% endif %} {% endfor %} {% endfor %} {% endblock news_content %} {% block extra_script %}{% endblock extra_script %}