eds/templates/cms/concept_detail.html

19 lines
411 B
HTML
Raw Normal View History

2017-04-07 09:17:20 +02:00
{% extends "./base_site.html" %}
{% load i18n static %}
{% block coltype %}colMS{% endblock %}
{% block content %}
<div id="content-main">
2017-08-13 22:58:46 +02:00
<div style="margin:auto;width:50%;">
<h1><b>{{object}}</b></h1>
2018-02-16 15:37:11 +01:00
{% if object.published %}
<p>{{object.texte|safe}}</p>
{% 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 %}