def is_active(self):
     return is_within_period(self.active_from, self.active_until)
 def is_registration_open(self):
     return is_within_period(self.registration_opens, self.registration_closes)
Exemple #3
0
 def is_accepting_cold_offers(self):
     return is_within_period(
         self.accepting_cold_offers_from,
         self.accepting_cold_offers_until,
     )
 def is_active(self):
     return is_within_period(self.active_from, self.active_until)
Exemple #5
0
 def is_registration_open(self):
     return is_within_period(self.registration_opens, self.registration_closes)
 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)
 def is_accepting_cold_offers(self):
     return is_within_period(
         self.accepting_cold_offers_from,
         self.accepting_cold_offers_until,
     )