From dba4498cd79b4df649c4097f7702e31c20305174 Mon Sep 17 00:00:00 2001 From: Lucie Galland Date: Mon, 13 Dec 2021 16:44:59 +0100 Subject: [PATCH 1/3] force main.css reload --- gestion/templates/gestion/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gestion/templates/gestion/base.html b/gestion/templates/gestion/base.html index 834906a..ce3cc36 100644 --- a/gestion/templates/gestion/base.html +++ b/gestion/templates/gestion/base.html @@ -16,7 +16,7 @@ {% block extrahead %}{% endblock %} - + From 67cc2e658a31a408ea701a808278934a580f60e5 Mon Sep 17 00:00:00 2001 From: Lucie Galland Date: Tue, 14 Dec 2021 11:50:56 +0100 Subject: [PATCH 2/3] yearbookfinal --- gestion/templates/gestion/yearbook2021.html | 4 +--- gestion/views.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/gestion/templates/gestion/yearbook2021.html b/gestion/templates/gestion/yearbook2021.html index 545bd20..8fee63d 100644 --- a/gestion/templates/gestion/yearbook2021.html +++ b/gestion/templates/gestion/yearbook2021.html @@ -8,9 +8,7 @@
- - - +
diff --git a/gestion/views.py b/gestion/views.py index 3797e74..a1116a9 100644 --- a/gestion/views.py +++ b/gestion/views.py @@ -79,7 +79,7 @@ class Profil(LoginRequiredMixin, TemplateView): class Chef(AllChefRequiredMixin, TemplateView): template_name = "gestion/chef.html" -class YearBook2021(AllChefRequiredMixin, TemplateView): +class YearBook2021(LoginRequiredMixin, TemplateView): template_name = "gestion/yearbook2021.html" From 149cc3b9f0f8776017225588e08c23530b929519 Mon Sep 17 00:00:00 2001 From: Lucie Galland Date: Thu, 16 Dec 2021 11:43:25 +0100 Subject: [PATCH 3/3] yearbook final de final --- gestion/templates/gestion/base.html | 2 +- gestion/templates/gestion/index.html | 1 + gestion/views.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gestion/templates/gestion/base.html b/gestion/templates/gestion/base.html index ce3cc36..bbab525 100644 --- a/gestion/templates/gestion/base.html +++ b/gestion/templates/gestion/base.html @@ -64,7 +64,7 @@ {% if user.is_superuser or user.profile.is_chef or user.profile.is_chef_event or user.profile.is_chef_com %} diff --git a/gestion/templates/gestion/index.html b/gestion/templates/gestion/index.html index 1daae82..832b65a 100644 --- a/gestion/templates/gestion/index.html +++ b/gestion/templates/gestion/index.html @@ -196,6 +196,7 @@ Nous répétons tous les mardis et jeudi soirs de 20h à 22h dans les sous sols du NIR à l'ENS.
Fanfaron débutant ou musicien aguerri, n'hésite pas à venir nous rejoindre ! Nous serons heureux de te compter dans nos rangs !
Nous prêtons des instruments à tout membre du COF souhaitant découvrir les joies de la fanfaronnerie !{% endblocktrans %}

+

{% blocktrans %}Pour un petit aperçu du fun qu'on peux avoir n'hésites pas à consulter notre {% endblocktrans %}year book

diff --git a/gestion/views.py b/gestion/views.py index a1116a9..9c1e9f1 100644 --- a/gestion/views.py +++ b/gestion/views.py @@ -79,7 +79,7 @@ class Profil(LoginRequiredMixin, TemplateView): class Chef(AllChefRequiredMixin, TemplateView): template_name = "gestion/chef.html" -class YearBook2021(LoginRequiredMixin, TemplateView): +class YearBook2021(TemplateView): template_name = "gestion/yearbook2021.html"