models: stated clearly that default for sent is False

This commit is contained in:
Benjamin Dauvergne 2012-12-05 00:38:25 +01:00
parent 313a84c92c
commit 23676f995e
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ class BlackBoardPush(models.Model):
request = models.ForeignKey(Request)
course_name = models.TextField(max_length=64)
visible_to_students = models.BooleanField(blank=True)
sent = models.BooleanField(blank=True)
sent = models.BooleanField(blank=True, default=False)
DocumentLicence.add_diffusion_tag(constant.MYCOURSE_TAG, _('Diffusion vers MyCourse'))