def is_active(self):
     return is_within_period(self.active_from, self.active_until)
Esempio n. 2
0
 def is_registration_open(self):
     return is_within_period(self.registration_opens, self.registration_closes)
Esempio n. 3
0
 def is_accepting_cold_offers(self):
     return is_within_period(
         self.accepting_cold_offers_from,
         self.accepting_cold_offers_until,
     )
Esempio n. 4
0
 def is_active(self):
     return is_within_period(self.active_from, self.active_until)
Esempio n. 5
0
 def is_registration_open(self):
     return is_within_period(self.registration_opens, self.registration_closes)
Esempio n. 6
0
 def is_enrollment_open(self):
     return is_within_period(self.enrollment_opens, self.enrollment_closes)
 def is_enrollment_open(self):
     return is_within_period(self.enrollment_opens, self.enrollment_closes)
Esempio n. 8
0
 def is_accepting_cold_offers(self):
     return is_within_period(
         self.accepting_cold_offers_from,
         self.accepting_cold_offers_until,
     )