Skip to content

Commit

Permalink
apps.core.models: Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
espenak committed Jul 18, 2011
1 parent e9f9038 commit d0b692e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion devilry/apps/core/models/delivery.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ class Delivery(models.Model, AbstractIsAdmin, AbstractIsCandidate, AbstractIsExa
'incremented within each AssignmentGroup, starting from 1. Always '
'unique within the assignment-group.'))
# Fields set by user
successful = models.BooleanField(blank=True, default=False)
successful = models.BooleanField(blank=True, default=False,
help_text=_('Has the delivery and all its files been uploaded successfully?'))
delivered_by = models.ForeignKey("Candidate")

# Only used when this is aliasing an earlier delivery, delivery_type == TYPE_ALIAS
Expand Down

0 comments on commit d0b692e

Please sign in to comment.