change default video licence from CC-Zero to CC-BY

This commit is contained in:
Élie Bouttier 2016-08-31 23:46:26 +02:00
parent 93cbfe0141
commit 4049841028
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class Participation(PonyConfModel):
sound = models.BooleanField(_("I need sound"), default=False)
videotaped = models.BooleanField(_("I'm ok to be recorded on video"), default=True)
video_licence = models.IntegerField(choices=enum_to_choices(LICENCES), default=1, verbose_name=_("Video licence"))
video_licence = models.IntegerField(choices=enum_to_choices(LICENCES), default=2, verbose_name=_("Video licence"))
notes = models.TextField(default='', blank=True, verbose_name=_("Notes"))
orga = models.BooleanField(default=False)