eds/templates/cms/concept_detail.html

19 lines
370 B
HTML
Raw Normal View History

2017-04-07 09:17:20 +02:00
{% extends "./base_site.html" %}
{% load i18n static %}
2018-05-23 21:16:25 +02:00
2017-04-07 09:17:20 +02:00
{% block content %}
<div id="content-main">
2018-05-23 21:16:25 +02:00
<div style="margin:auto;width:80%;">
<h1>{{ object }}</h1>
2018-02-16 15:37:11 +01:00
{% if object.published %}
2018-05-23 21:16:25 +02:00
<p>{{ object.texte|safe }}</p>
2018-02-16 15:37:11 +01:00
{% else %}
<p>Le document est en travail</p>
{% endif %}
2017-08-13 22:58:46 +02:00
</div>
2017-04-07 09:17:20 +02:00
</div>
{% endblock %}