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