summaryrefslogtreecommitdiff
path: root/sublab_project/news/templates/news/news_detail.html
blob: e3a0de18ba3be6e02db5509327711af873b260f1 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends 'base.html' %}

{% block title %}{{ object.title }}{% endblock %}

{% block content %}
	<p class="news_date">{{ object.date_updated|date:"DATETIME_FORMAT" }}</p>
	<h2 id="{{ object.slug }}">{{ object.title }}</h3>
	<p>{{ object.content_html|safe }}</p>
	<p class="header">{{ object.author }}</p>
{% endblock content %}