From 79b5985d215fd43e28e71f95c19b97232acdfc5b Mon Sep 17 00:00:00 2001 From: Gregory Trullemans Date: Sun, 19 Nov 2023 19:47:02 +0100 Subject: [PATCH] update email of note --- jarvis/followup/views.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/jarvis/followup/views.py b/jarvis/followup/views.py index 502c083..a8b4e8d 100644 --- a/jarvis/followup/views.py +++ b/jarvis/followup/views.py @@ -513,7 +513,7 @@ def note_create_or_update(request, note_id=None, gymnast_id=None): url = request.build_absolute_uri( reverse("gymnast_details_tab", args=(new_note.gymnast.id, "event")) ) - content = (form.cleaned_data["informations"],) + # content = (form.cleaned_data["informations"]) send_mail( "Nouvelle note", @@ -522,11 +522,7 @@ def note_create_or_update(request, note_id=None, gymnast_id=None): [new_note.gymnast.user.email, new_note.gymnast.email_trainer], fail_silently=False, html_message=f"""

Bonjour,

-

Une nouvelle note vous a été envoyée :

-
- {content} -
-
+

Une nouvelle note vous a été envoyée.

Vous pouvez la consulter en cliquant ici.


Excellente journée

Jarvis

""",