You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name=models.CharField(blank=True, max_length=255, help_text="Name of session, in case the session has a purpose rather than just being a group meeting.")
853
857
short=models.CharField(blank=True, max_length=32, help_text="Short version of 'name' above, for use in filenames.")
854
-
group=models.ForeignKey(Group) # The group type determines the session type. BOFs also need to be added as a group.
858
+
type=models.ForeignKey(TimeSlotTypeName)
859
+
group=models.ForeignKey(Group) # The group type historically determined the session type. BOFs also need to be added as a group. Note that not all meeting requests have a natural group to associate with.
0 commit comments