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
Moved the materials start, cutoff, and revision dates into the Meeting object
Add a bit to meeting to note whether proceedings are final.
Update proceedings view to reflect the status of that bit.
Add a function that finalizes a meetings proceedings.
Straighten out a migration numbering collision introduced in an earlier merge.
Commit ready for merge.
- Legacy-Id: 11764
field=models.IntegerField(default=50, help_text=b'The number of days after the meeting start date in which updates to existing meeting materials will be accepted.', blank=True),
18
+
preserve_default=True,
19
+
),
20
+
migrations.AddField(
21
+
model_name='meeting',
22
+
name='submission_cutoff_day_offset',
23
+
field=models.IntegerField(default=26, help_text=b'The number of days after the meeting start date in which new meeting materials will be accepted.', blank=True),
24
+
preserve_default=True,
25
+
),
26
+
migrations.AddField(
27
+
model_name='meeting',
28
+
name='submission_start_day_offset',
29
+
field=models.IntegerField(default=90, help_text=b'The number of days before the meeting start date after which meeting materials will be accepted.', blank=True),
agenda_note=models.TextField(blank=True, help_text="Text in this field will be placed at the top of the html agenda page for the meeting. HTML can be used, but will not be validated.")
0 commit comments