evorepo/templates/news/view.html

14 lines
284 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<div class="box">
<div style="float: right; font-size: small">
{{ news.author.get_full_name }}<br />
{{ news.postdate }}
</div>
<h3>{{ news.title }}</h3>
<hr /><br />
{{ news.content|linebreaks }}
</div>
{% endblock %}