diff --git a/news/templates/news/view.html b/news/templates/news/view.html
index ccff0a7..ff326e5 100644
--- a/news/templates/news/view.html
+++ b/news/templates/news/view.html
@@ -1 +1,33 @@
-{{news}}
+{% extends 'news/list.html' %}
+
+{% load widget_tweaks static i18n django_bootstrap_breadcrumbs permission_tags pagination %}
+
+{% block breadcrumbs %}
+ {{ block.super }}
+ {% trans 'Visualize News' as visualize_news %}
+ {% breadcrumb visualize_news 'news:view' %}
+{% endblock %}
+
+{% block render_breadcrumbs %}
+ {% render_breadcrumbs %}
+{% endblock %}
+
+
+{% block content %}
+
+{% if messages %}
+ {% for message in messages %}
+
+ {% endfor %}
+{% endif %}
+
+{{new.title}}
+
{{new.creator}}
+
{{new.create_date}}
+{% endblock %}
--
libgit2 0.21.2