eds/templates/cms/document_detail.html
2017-04-07 09:17:20 +02:00

22 lines
425 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>
<p>{{object.texte|safe}}</p>
</div>
<div style="height: 600px;width: 400px;">
<object data="media/media/EDS_Calendrier_2017.pdf" type="text/html" codetype="application/pdf" ></object>
</div>
</div>
{% endblock %}