diff options
Diffstat (limited to 'yaksh/models.py')
-rw-r--r-- | yaksh/models.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/yaksh/models.py b/yaksh/models.py index f065190..2e759ee 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -722,6 +722,14 @@ class Course(models.Model): percent = round((count / len(modules))) return percent + def days_remain_to_start(self): + """ Get the days remaining for the start of the course """ + if timezone.now() < self.start_enroll_time: + remaining_days = (self.start_enroll_time - timezone.now()).days + 1 + else: + remaining_days = 0 + return remaining_days + def __str__(self): return self.name |