diff options
Diffstat (limited to 'yaksh/models.py')
-rw-r--r-- | yaksh/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/yaksh/models.py b/yaksh/models.py index 6edb9ea..d453f81 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -1161,6 +1161,9 @@ class CourseStatus(models.Model): self.current_unit = unit self.save() + def __str__(self): + return "{0} status for {1}".format(self.course.name, self.user.username) + ############################################################################### class ConcurrentUser(models.Model): |