21 lines
565 B
Django/Jinja
21 lines
565 B
Django/Jinja
{% extends "cao_blogr:templates/layout.jinja2" %}
|
|
|
|
{% block content %}
|
|
|
|
{% if request.authenticated_userid %}
|
|
<p>
|
|
<a href="{{ request.route_url('topic', topic=entry.topic_id) }}">[ Retour ]</a>
|
|
<a href="{{ request.route_url('blog_edit', topic=entry.topic_id, id=entry.id) }}">[ Modifier ]</a>
|
|
|
|
</p>
|
|
{% endif %}
|
|
|
|
<hr/>
|
|
<p>{{ body_html | safe }}</p>
|
|
<hr/>
|
|
<p>
|
|
Publié le : <strong title="{{ entry.created }}">{{ entry.edited.strftime("%d-%m-%Y - %H:%M") }}</strong>
|
|
</p>
|
|
|
|
{% endblock %}
|