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"> | |
88324cb5 | 7 | <table width="100%"> |
8 | <tr> | |
9 | <th>Type</th> | |
10 | <td>{{ evenement.type }}</td> | |
74b087e5 EMS |
11 | </tr> |
12 | {% if evenement.discipline %} | |
88324cb5 | 13 | <tr> |
14 | <th>Discipline{% if evenement.discipline_secondaire %}s{% endif %}</th> | |
15 | <td>{{ evenement.discipline }} | |
16 | {% if evenement.discipline_secondaire %}, {{ evenement.discipline_secondaire }}{% endif %} | |
17 | </td> | |
18 | </tr> | |
74b087e5 | 19 | {% endif %} |
92c7413b CR |
20 | <tr> |
21 | <th width="120px">Début</th> | |
c1677b39 | 22 | <td>{{ evenement.debut|date:"d/m/Y H\hi" }} (UTC)</td> |
92c7413b CR |
23 | </tr> |
24 | <tr> | |
25 | <th>Fin</th> | |
c1677b39 | 26 | <td>{{ evenement.fin|date:"d/m/Y H\hi" }} (UTC)</td> |
92c7413b | 27 | </tr> |
74b087e5 | 28 | {% if evenement.description %} |
92c7413b | 29 | <tr> |
d9cf5b35 | 30 | <th>Description</th> |
4101cfc0 | 31 | <td>{{ evenement.description|linebreaksbr }}</td> |
92c7413b | 32 | </tr> |
74b087e5 | 33 | {% endif %} |
4101cfc0 EMS |
34 | {% if evenement.mots_cles %} |
35 | <tr> | |
36 | <th>Mots-clés</th> | |
37 | <td>{{ evenement.mots_cles }}</td> | |
38 | </tr> | |
39 | {% endif %} | |
40 | {% if evenement.contact %} | |
92c7413b CR |
41 | <tr> |
42 | <th>Contact</th> | |
4101cfc0 | 43 | <td>{{ evenement.contact|linebreaksbr }}</td> |
92c7413b | 44 | </tr> |
4101cfc0 EMS |
45 | {% endif %} |
46 | {% if evenement.lieu %} | |
92c7413b | 47 | <tr> |
422321f9 | 48 | <th>Lieu</th> |
4101cfc0 | 49 | <td>{{ evenement.lieu|linebreaksbr }}</td> |
92c7413b | 50 | </tr> |
4101cfc0 EMS |
51 | {% endif %} |
52 | {% if evenement.url %} | |
92c7413b CR |
53 | <tr> |
54 | <th>URL</th> | |
4101cfc0 | 55 | <td><a href="{{ evenement.url }}">{{ evenement.url }}</a></td> |
92c7413b | 56 | </tr> |
4101cfc0 | 57 | {% endif %} |
92c7413b CR |
58 | </table> |
59 | </div> | |
92c7413b | 60 | {% endblock %} |