summaryrefslogtreecommitdiff
path: root/yaksh/models.py
diff options
context:
space:
mode:
authorPalaparthy Adityachandra2020-02-13 08:54:47 +0530
committerGitHub2020-02-13 08:54:47 +0530
commit32f1d4dc7816bbb93f6dda77591eeb75c3f30c0d (patch)
tree4abce8ff313a06796f6654d2a69738bebce86ecf /yaksh/models.py
parent4aaadc163debb33f20b9445edfd20d1cbec5cdd2 (diff)
parentf20a8da0c4c29398297d02fbeb2f9868cddae7a3 (diff)
downloadonline_test-32f1d4dc7816bbb93f6dda77591eeb75c3f30c0d.tar.gz
online_test-32f1d4dc7816bbb93f6dda77591eeb75c3f30c0d.tar.bz2
online_test-32f1d4dc7816bbb93f6dda77591eeb75c3f30c0d.zip
Merge pull request #647 from adityacp/register_admin_models
Register models in admin and add filters
Diffstat (limited to 'yaksh/models.py')
-rw-r--r--yaksh/models.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/yaksh/models.py b/yaksh/models.py
index 6edb9ea..df37b26 100644
--- a/yaksh/models.py
+++ b/yaksh/models.py
@@ -1161,6 +1161,11 @@ 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):