21 lines
399 B
HTML
21 lines
399 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block titre %}{{ nom }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if user.profile.is_chef %}
|
|
<p><a href="/calendar/edition/{{ev.id}}">Modifier l'événement</a></p>
|
|
{% endif %}
|
|
<p>{{ nom }}</p>
|
|
<p>{{ev.date}}</p>
|
|
<p>{{ev.debut }}
|
|
{% if fin %}
|
|
- {{ ev.fin }}
|
|
{% endif %}
|
|
</p>
|
|
<p> Lieu : {{ ev.lieu }}</p>
|
|
{% if desc %}
|
|
<p>{{ev.description }}</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|