Commit fc41b17b by Diana Huang

Merge pull request #30 from edx/diana/add-app-label

Add new app_label to ScoreAnnotation.
parents 39a8d140 1f976d83
......@@ -302,6 +302,9 @@ class ScoreSummary(models.Model):
class ScoreAnnotation(models.Model):
""" Annotate individual scores with extra information if necessary. """
class Meta:
app_label = "submissions"
score = models.ForeignKey(Score)
# A string that will represent the 'type' of annotation,
# e.g. staff_override, etc.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment