Skip to content

Commit 4a71c14

Browse files
committed
Fix issue creating new timeslots in secretariat scheduling tool caused by changing the meeting start date to a Saturday. Commit ready for merge.
- Legacy-Id: 14189
1 parent c5ecab1 commit 4a71c14

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

ietf/secr/meetings/forms.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
from ietf.name.models import TimeSlotTypeName
99
import ietf.utils.fields
1010

11-
DAYS_CHOICES = ((-1,'Saturday'),
12-
(0,'Sunday'),
13-
(1,'Monday'),
14-
(2,'Tuesday'),
15-
(3,'Wednesday'),
16-
(4,'Thursday'),
17-
(5,'Friday'))
11+
DAYS_CHOICES = ((0,'Saturday'),
12+
(1,'Sunday'),
13+
(2,'Monday'),
14+
(3,'Tuesday'),
15+
(4,'Wednesday'),
16+
(5,'Thursday'),
17+
(6,'Friday'))
1818

1919
# using Django week_day lookup values (Sunday=1)
2020
SESSION_DAYS = ((2,'Monday'),

0 commit comments

Comments
 (0)