From d8176cbf36ca031246b6194a4c38000682e89438 Mon Sep 17 00:00:00 2001 From: Jonathan Weth <git@jonathanweth.de> Date: Wed, 9 Feb 2022 20:26:02 +0100 Subject: [PATCH] Add missing context information 'has_documentation' to register object view --- CHANGELOG.rst | 5 +++++ aleksis/apps/alsijil/views.py | 2 ++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6b15e8803..d009b55fd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_. Unreleased ---------- +Fixed +~~~~~ + +* Lesson status icon showed 'Missing data' although the data were complete. + `2.0` - 2022-02-06 ------------------ diff --git a/aleksis/apps/alsijil/views.py b/aleksis/apps/alsijil/views.py index ccb11c6da..2d8968207 100644 --- a/aleksis/apps/alsijil/views.py +++ b/aleksis/apps/alsijil/views.py @@ -198,6 +198,8 @@ def register_object( # Create or get lesson documentation object; can be empty when first opening lesson lesson_documentation = register_object.get_or_create_lesson_documentation(wanted_week) + context["has_documentation"] = bool(lesson_documentation.topic) + lesson_documentation_form = LessonDocumentationForm( request.POST or None, instance=lesson_documentation, -- GitLab