From f09a6999e28627c46555aeb110dc83c9840e465e Mon Sep 17 00:00:00 2001 From: Morti Date: Thu, 15 Apr 2021 21:36:55 +0200 Subject: [PATCH 1/2] [ADD] embed in meeting event --- events/templates/event_detail.html | 332 +++++++++++++++++------------ 1 file changed, 196 insertions(+), 136 deletions(-) diff --git a/events/templates/event_detail.html b/events/templates/event_detail.html index cb1cd45f..ec954a7a 100644 --- a/events/templates/event_detail.html +++ b/events/templates/event_detail.html @@ -7,154 +7,214 @@ {% block content %} - +{% if not event.meeting %} + -
-

- {{event.title}} - - - Editer - -

-
- -

-

-
- {% include "event_time.html" %} - Organisateur : {{event.organizer.username}} -
-
-

- {% with interested=event.interested.all %} - {% if interested.count == 0 %} - Personne n'est intéressé pour l'instant - {% else %} - {% if interested.count == 1 %} - Une personne est intéressée - {% else %} - {{interested.count}} personnes sont intéressés - {% endif %} -

- {% endif %} - {% if request.user in interested %} - - Plus moi - - {% else %} - - {% if interested.count == 0%} - Je le suis ! - {% else %} - Moi aussi - {% endif %} - - {% endif %} - {% endwith %} -

- {% if request.user.is_authenticated and not event.meeting %} -

Cet événement n'a pas d'ordre du jour. Ajouter un OJ

- {% endif %} -
+
+

+ {{event.title}} + + + Editer + +

-

-
-
- {% if event.status == 'i' %} - - {% endif %} - {% if not event.meeting %} -
-

Description

- {{event.description|markdown}} -
- {% if event.picture %} -
- +

+

+
+ {% include "event_time.html" %} + Organisateur : {{event.organizer.username}} +
+
+

+ {% with interested=event.interested.all %} + {% if interested.count == 0 %} + n'est intéressé pour l'instant + {% else %} + {% if interested.count == 1 %} + Une personne est intéressée + {% else %} + {{interested.count}} personnes sont intéressés + {% endif %} +

+ {% endif %} + {% if request.user in interested %} + + Plus moi + + {% else %} + + {% if interested.count == 0%} + Je le suis ! + {% else %} + Moi aussi + {% endif %} + + {% endif %} + {% endwith %} +

+ {% if request.user.is_authenticated %} +

Cet événement n'a pas d'ordre du jour. Ajouter un OJ

+ {% endif %} +
- {% endif %} - {% else %} -
-

Description

- {{event.description|markdown}} -
-
-

- Ordre du jour - {% if request.user.is_authenticated %} - - - Editer - - {% if not event.meeting.ongoing and not event.meeting.PV %} - - - Exporter l'ordre du jour sur le pad - - {% endif %} - {% endif %} -

- {% if not event.meeting.OJ %} -

L'ordre du jour est vide pour l'instant.

- {% else %} - {{event.meeting.OJ|markdown}} - {% endif %} -

- Compte rendu - {% if request.user.is_authenticated %} - - - Editer - - - - Importer le PV depuis le pad - +

+
+
+ {% if event.status == 'i' %} + + {% endif %} +
+

Description

+ {{event.description|markdown}} +
+ {% if event.picture %} +
+ +
{% endif %} -

- {% if event.meeting.PV %} - {{event.meeting.PV|markdown}} -
-

Pad de la réunion

-

{{event.meeting.pad}}

- {% else %} -

Le pad pour prendre note en live se trouve là bas: {{event.meeting.pad}}
- Veuillez y prendre note en Markdown.

- {% endif %} - {% if event.is_today_or_before %} -

Membres présents

- {{event.meeting.members.all|join:", "|default:"Aucun membre présent"}} - - {% endif %}
- {% endif%} -
+{% else %} + +
+ + +
+

+ {{event.title}} + + + Editer + +

+
+

+

+
+ {% include "event_time.html" %} + Organisateur : {{event.organizer.username}} +
+
+

+ {% with interested=event.interested.all %} + {% if interested.count == 0 %} + n'est intéressé pour l'instant + {% else %} + {% if interested.count == 1 %} + Une personne est intéressée + {% else %} + {{interested.count}} personnes sont intéressés + {% endif %} +

+ {% endif %} + {% if request.user in interested %} + + Plus moi + + {% else %} + + {% if interested.count == 0%} + Je le suis ! + {% else %} + Moi aussi + {% endif %} + + {% endif %} + {% endwith %} +

+
+
+

+
+
+ {% if event.status == 'i' %} + + {% endif %} +
+

Description

+ {{event.description|markdown}} +
+
+
+
+ +
+{% endif%} {% endblock %} From f4e9f6ea56210ae948b71b2f9acbd2f4826f0393 Mon Sep 17 00:00:00 2001 From: Morti Date: Thu, 15 Apr 2021 21:39:11 +0200 Subject: [PATCH 2/2] [RMV] django_suit --- incubator/settings.py | 1 - requirements.txt | 1 - 2 files changed, 2 deletions(-) diff --git a/incubator/settings.py b/incubator/settings.py index 5a247644..c297aba3 100644 --- a/incubator/settings.py +++ b/incubator/settings.py @@ -45,7 +45,6 @@ # Application definition INSTALLED_APPS = ( - 'suit', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', diff --git a/requirements.txt b/requirements.txt index 58f4113f..ad19ec0d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -29,7 +29,6 @@ django-picklefield==2.0 django-resized==0.3.9 django-sekizai==1.0.0 django-simple-history==2.11.0 -https://github.com/darklow/django-suit/tarball/v2 djangorestframework==3.11.2 entrypoints==0.3 flake8==3.7.8