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
self.cutoff_warning='The pre-meeting cutoff date for new documents (i.e., version -00 Internet-Drafts) is %s at 5 PM (PT). You will not be able to submit a new document after this time until %s, at midnight'% (first_cut_off, ietf_monday)
59
+
else: # No 00 version allowed
60
+
self.cutoff_warning='The pre-meeting cutoff date for new documents (i.e., version -00 Internet-Drafts) was %s at 5 PM (PT). You will not be able to submit a new document until %s, at midnight.<br>You can still submit a version -01 or higher Internet-Draft until 5 PM (PT), %s'% (first_cut_off, ietf_monday, second_cut_off)
ifnow.date() ==second_cut_offandnow.hour<CUTOFF_HOUR: # We are in the first_cut_off yet
64
+
self.cutoff_warning='The pre-meeting cutoff date for new documents (i.e., version -00 Internet-Drafts) was %s at 5 PM (PT). You will not be able to submit a new document until %s, at midnight.<br>The I-D submission tool will be shut down at 5 PM (PT) today, and reopened at midnight (PT), %s'% (first_cut_off, ietf_monday, ietf_monday)
65
+
self.in_first_cut_off=True
66
+
else: # Completely shut down of the tool
67
+
self.cutoff_warning='The cut off time for the I-D submission was 5 PM (PT), %s.<br>The I-D submission tool will be reopened at midnight, %s'% (second_cut_off, ietf_monday)
68
+
self.shutdown=True
69
+
31
70
def__unicode__(self):
32
71
returnself.as_div()
33
72
@@ -47,3 +86,28 @@ def get_fieldsets(self):
47
86
# if there is no fields in this fieldset, we continue to next fieldset
0 commit comments