feat: alternate filter text and hide private

Resolves #53
Resolves #82
This commit is contained in:
James Graham
2021-03-01 19:01:57 +00:00
parent b73e2dcb2d
commit db76d57971
4 changed files with 62 additions and 12 deletions

View File

@@ -186,12 +186,6 @@ class Theme(models.Model):
class PersonQuestion(Question):
"""Question which may be asked about a person."""
#: Should answers to this question be displayed on public profiles?
answer_is_public = models.BooleanField(
help_text='Should answers to this question be displayed on profiles?',
default=True,
blank=False,
null=False)
class PersonQuestionChoice(QuestionChoice):