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
Copy file name to clipboardExpand all lines: ietf/meeting/models.py
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -132,15 +132,15 @@ class Session(models.Model):
132
132
meeting (time and location is stored in a TimeSlot) - if multiple
133
133
timeslots are needed, multiple sessions will have to be created.
134
134
Training sessions and similar are modeled by filling in a
135
-
responsible group (e.g. Edu team) and filling in the name"""
135
+
responsible group (e.g. Edu team) and filling in the name."""
136
136
meeting=models.ForeignKey(Meeting)
137
137
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")
138
138
group=models.ForeignKey(Group) # The group type determines the session type. BOFs also need to be added as a group.
0 commit comments