Add base circle property to circle
This commit is contained in:
parent
9713850afa
commit
208fa3c8b9
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue