Skip to content

Commit

Permalink
Add "to participants" after "visible to" in text of Poll visibility o…
Browse files Browse the repository at this point in the history
…ptions
  • Loading branch information
mikhuang committed Jul 2, 2013
1 parent d7fd97d commit 7cb3da7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deme_django/modules/poll/models.py
Expand Up @@ -58,9 +58,9 @@ class Meta:
time_zone = models.CharField(_('time zone'), max_length=255, choices=time_zones, default=settings.TIME_ZONE, help_text=_("(Advanced) What time zone are dates in?"))
eligibles = FixedForeignKey(Group, related_name='poll_participant', null=True, blank=True, default=None, help_text=_('Which group is this poll for'), verbose_name="Eligible Group")
visibility_choices = (
('responses visible' , 'responses visible - each user that has responded is visible' ),
('who responded visible', 'who responded visible - who has responded is visible, but not how they responded'),
('closed' , 'closed - neither who has responded nor how they have responded is visible'),
('responses visible' , 'responses visible - each user that has responded is visible to participants' ),
('who responded visible', 'who responded visible - who has responded is visible to participants, but not how they responded'),
('closed' , 'closed - neither who has responded nor how they have responded is visible to participants'),
)
visibility = models.CharField(_('visibility'), default='Unassigned', max_length=36, choices=visibility_choices)
allow_editing_responses = FixedBooleanField(_('allow editing responses'), default=False, help_text=_("If enabled, poll participants can go back and edit their responses after their initial submission"))
Expand Down

0 comments on commit 7cb3da7

Please sign in to comment.