blob: f1c21e6fb7111b196a7f3ba62ba8f2f5a0cc3d10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends "main/simple_page.html" %}
{% load utils %}
{% block content %}
<div id="intro">
<h2 id="maincontent">{{ pagetitle }}</h2>
{{ content|safe }}
</div>
<h2 class="headerstyle">DSs</h2>
<ol>
{% for test in tests %}
<li> DS {{ test.number }} : {{ test.date|date:"d/m/y" }}</li>
{% endfor %}
</ol>
<h2 class="headerstyle">Colles</h2>
<ol>
{% for colle in colles %}
<li> <a href="/get/colle/{{ colle.mainfile|basename }}">{{ colle.name }}</a></li>
{% endfor %}
</ol>
{% endblock %}
|