{% extends "base.html" %} {% block title %} View - {{ news.title }} {% endblock %} {% block content %}

{{ news.title }}

List of news
{% csrf_token %} Edit
Description
{{ news.description }}
Media: {{ news.get_media }}
Type: {{ news.get_type }}
Region: {{ news.get_region }}
Publish date: {{ news.publish_date }}
Source: {{ news.url }}
{% for i in news.get_tags %} {{ i.name }} {% endfor %}
{% endblock %}