ernestophone.ens.fr/templates/calendrier/home.html

41 lines
1.4 KiB
HTML
Raw Normal View History

2015-04-13 18:56:43 +02:00
{% extends "base.html" %}
{% load staticfiles %}
{% load frenchmonth %}
2015-04-13 19:36:27 +02:00
{% load translate %}
2015-04-13 18:56:43 +02:00
{% 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>
2015-07-22 22:08:59 +02:00
<div id="description">
<p>
Fanfaron de passage, musicien intrigué, Ernestophoniste en quête de sensations fortes ou de partitions, ou tout simplement internaute égaré, l'Ernestophone te souhaite la bienvenue sur son son site !
</p>
<p>
<strong>L'Ernestophone</strong>, c'est la fanfare de l'École normale supérieure, (re)créée en septembre 2011, pour le plus grand bonheur des petits. Et des grands.
2015-07-22 22:08:59 +02:00
</p>
</div>
2015-04-13 18:56:43 +02:00
<table width="100%">
<tr>
<td width="20%" align="left">
&lt;&lt; <a href="/calendar/{{PreviousYear}}/{{PreviousMonth}}/">{{PreviousMonthName|frenchmonth}} {{PreviousYear}}</a>
</td>
2015-04-17 18:38:44 +02:00
<td width="20%" align="center"><a href="/calendar">Aujourd'hui</a></td>
2015-04-13 18:56:43 +02:00
<td width="20%" align="right">
<a href="/calendar/{{NextYear}}/{{NextMonth}}/">{{NextMonthName|frenchmonth}} {{NextYear}}</a> &gt;&gt;
</td>
</tr>
</table>
<div id="calendar">
2015-04-13 19:36:27 +02:00
{{Calendar|translate}}
2015-04-13 18:56:43 +02:00
</div>
{% if user.profile.is_chef %}
<a href="{% url "calendrier.views.create_event" %}">Ajouter un évènement</a>
{% endif %}
{% endblock %}