Add base circle property to circle

This commit is contained in:
Ramon Wenger 2024-07-11 17:43:08 +02:00 committed by Christian Cueni
parent 9713850afa
commit 208fa3c8b9
1 changed files with 3 additions and 0 deletions

View File

@ -110,6 +110,9 @@ class Circle(CourseBasePage):
profiles = models.ManyToManyField(CourseProfile, related_name="circles")
# base circles do never belong to a course profile and should also get displayed no matter what profile is chosen
is_base_circle = models.BooleanField(default=False)
# profile = models.ForeignKey(
# ApprovalProfile,
# null=True,