We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5ecab1 commit 4a71c14Copy full SHA for 4a71c14
1 file changed
ietf/secr/meetings/forms.py
@@ -8,13 +8,13 @@
8
from ietf.name.models import TimeSlotTypeName
9
import ietf.utils.fields
10
11
-DAYS_CHOICES = ((-1,'Saturday'),
12
- (0,'Sunday'),
13
- (1,'Monday'),
14
- (2,'Tuesday'),
15
- (3,'Wednesday'),
16
- (4,'Thursday'),
17
- (5,'Friday'))
+DAYS_CHOICES = ((0,'Saturday'),
+ (1,'Sunday'),
+ (2,'Monday'),
+ (3,'Tuesday'),
+ (4,'Wednesday'),
+ (5,'Thursday'),
+ (6,'Friday'))
18
19
# using Django week_day lookup values (Sunday=1)
20
SESSION_DAYS = ((2,'Monday'),
0 commit comments