32 lines
989 B
HTML
32 lines
989 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
{% load frenchmonth %}
|
|
{% load translate %}
|
|
|
|
{% block extrahead %}
|
|
<link rel="stylesheet" href={% static 'css/calend.css' %} />
|
|
{% endblock %}
|
|
|
|
{% block titre %}L'Ernestophone{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>L'Ernestophone, la fanfare de l'École normale supérieure</h1>
|
|
<table width="100%">
|
|
<tr>
|
|
<td width="20%" align="left">
|
|
<< <a href="/calendar/{{PreviousYear}}/{{PreviousMonth}}/">{{PreviousMonthName|frenchmonth}} {{PreviousYear}}</a>
|
|
</td>
|
|
<td width="20%" align="center"><a href="/calendar">Today</a></td>
|
|
<td width="20%" align="right">
|
|
<a href="/calendar/{{NextYear}}/{{NextMonth}}/">{{NextMonthName|frenchmonth}} {{NextYear}}</a> >>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div id="calendar">
|
|
{{Calendar|translate}}
|
|
</div>
|
|
{% if user.profile.is_chef %}
|
|
<a href="{% url "calendrier.views.create_event" %}">Ajouter un évènement</a>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|