summaryrefslogtreecommitdiff
path: root/testapp/exam/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/exam/models.py')
-rw-r--r--testapp/exam/models.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/testapp/exam/models.py b/testapp/exam/models.py
index dd0c033..04789da 100644
--- a/testapp/exam/models.py
+++ b/testapp/exam/models.py
@@ -129,6 +129,9 @@ class AnswerPaper(models.Model):
# The time when this paper was started by the user.
start_time = models.DateTimeField()
+
+ # The time when this paper was ended by the user.
+ end_time = models.DateTimeField()
# User's IP which is logged.
user_ip = models.CharField(max_length=15)