add yearbook2021

This commit is contained in:
Lucie Galland 2021-11-23 18:38:59 +01:00
parent a5c1fb48fb
commit ec0dbd2282
3 changed files with 3 additions and 1 deletions

Binary file not shown.

View file

@ -64,7 +64,7 @@
<div class="dropdown-menu">
<a class="dropdown-item" href="{% url 'trombonoscope:view' %}">{% trans "Trombonoscope" %}</a>
<a class="dropdown-item" href="https://photos.cof.ens.fr/index.php/Clubs-du-COF/L'Ernestophone" target="_blank">{% trans "Galerie Photo" %}</a>
<a class="dropdown-item" href="{% static 'documents/yearbook2021.pdf' %}" target="_blank">{% trans "Year Book 2021" %}</a>
</div>
</li>
{% if user.is_superuser or user.profile.is_chef or user.profile.is_chef_event or user.profile.is_chef_com %}

View file

@ -1,5 +1,6 @@
{% extends "gestion/base.html" %}
{% load i18n %}
{% load static %}
{% block titre %}{% trans "Social" %}{% endblock %}
{% block content %}
@ -12,6 +13,7 @@
<ul>
<li> <a href="{% url 'trombonoscope:view' %}">{% trans "Trombonoscope" %}</a></li>
<li><a href="https://photos.cof.ens.fr/index.php/Clubs-du-COF/L'Ernestophone" target="_blank">{% trans "Galerie Photo" %}</a></li>
<li><a href="{% static 'documents/yearbook2021.pdf' %}" target="_blank">{% trans "Year Book 2021" %}</a></li>
</ul>
</div>