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