summaryrefslogtreecommitdiff
path: root/exam/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'exam/models.py')
-rw-r--r--exam/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/exam/models.py b/exam/models.py
index 247b362..3a8121b 100644
--- a/exam/models.py
+++ b/exam/models.py
@@ -13,7 +13,7 @@ class Question(models.Model):
# An optional one-line summary of the question.
summary = models.CharField(max_length=256)
# The question text.
- question = models.TextField()
+ description = models.TextField()
# Number of points for the question.
points = models.IntegerField()