eds/templates/cms/concept_detail.html
2018-02-16 15:37:11 +01:00

18 lines
411 B
HTML

{% extends "./base_site.html" %}
{% load i18n static %}
{% block coltype %}colMS{% endblock %}
{% block content %}
<div id="content-main">
<div style="margin:auto;width:50%;">
<h1><b>{{object}}</b></h1>
{% if object.published %}
<p>{{object.texte|safe}}</p>
{% else %}
<p>Le document est en travail</p>
{% endif %}
</div>
</div>
{% endblock %}