Commit | Line | Data |
---|---|---|
92c7413b CR |
1 | {% extends "container_base.html" %} |
2 | ||
3 | {% block contenu %} | |
4101cfc0 | 4 | <h4>{{ evenement.titre }}</h4> |
92c7413b CR |
5 | |
6 | <div class="zone-texte"> | |
7 | <table width="100%"> | |
8 | <tr> | |
9 | <th width="120px">Début</th> | |
4101cfc0 | 10 | <td>{{ evenement.debut|date:"Y-m-d H:i" }} (UTC)</td> |
92c7413b CR |
11 | </tr> |
12 | <tr> | |
13 | <th>Fin</th> | |
4101cfc0 | 14 | <td>{{ evenement.fin|date:"Y-m-d H:i" }} (UTC)</td> |
92c7413b CR |
15 | </tr> |
16 | <tr> | |
d9cf5b35 | 17 | <th>Description</th> |
4101cfc0 | 18 | <td>{{ evenement.description|linebreaksbr }}</td> |
92c7413b | 19 | </tr> |
4101cfc0 EMS |
20 | {% if evenement.mots_cles %} |
21 | <tr> | |
22 | <th>Mots-clés</th> | |
23 | <td>{{ evenement.mots_cles }}</td> | |
24 | </tr> | |
25 | {% endif %} | |
26 | {% if evenement.contact %} | |
92c7413b CR |
27 | <tr> |
28 | <th>Contact</th> | |
4101cfc0 | 29 | <td>{{ evenement.contact|linebreaksbr }}</td> |
92c7413b | 30 | </tr> |
4101cfc0 EMS |
31 | {% endif %} |
32 | {% if evenement.lieu %} | |
92c7413b | 33 | <tr> |
422321f9 | 34 | <th>Lieu</th> |
4101cfc0 | 35 | <td>{{ evenement.lieu|linebreaksbr }}</td> |
92c7413b | 36 | </tr> |
4101cfc0 EMS |
37 | {% endif %} |
38 | {% if evenement.url %} | |
92c7413b CR |
39 | <tr> |
40 | <th>URL</th> | |
4101cfc0 | 41 | <td><a href="{{ evenement.url }}">{{ evenement.url }}</a></td> |
92c7413b | 42 | </tr> |
4101cfc0 | 43 | {% endif %} |
92c7413b CR |
44 | </table> |
45 | </div> | |
92c7413b | 46 | {% endblock %} |