diff options
| author | Alban Gruin | 2018-01-11 14:09:33 +0100 | 
|---|---|---|
| committer | Alban Gruin | 2018-01-11 14:13:57 +0100 | 
| commit | e710ab4b1293ecbd0f61649b4abb3072379f362f (patch) | |
| tree | 8f01a9862337754f5cd627ce41594145aad739f1 /management/commands | |
| parent | 4998865c2d5e94c53547e44aed1dc825163c0c4a (diff) | |
On remplace les <br /> dans le champ remarque par des retours à la
ligne lors du parsage, puis on les remplace à nouveau par des <br />
lors du rendu des templates.
Diffstat (limited to 'management/commands')
| -rw-r--r-- | management/commands/_private.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/management/commands/_private.py b/management/commands/_private.py index 4dd9262..17a99fe 100644 --- a/management/commands/_private.py +++ b/management/commands/_private.py @@ -68,7 +68,7 @@ def get_event(timetable, event, event_week, today):      # On récupère le champ « remarque »      if event.notes is not None: -        course.notes = event.notes.text +        course.notes = "\n".join(event.notes.find_all(text=True))      # On récupère le champ « nom »      if event.resources.module is not None: | 
