add referral and remove community question

new-signup-questions
vilmibm 2019-04-16 01:23:35 +00:00
parent d316fef6b6
commit 92177e7a66
2 changed files with 8 additions and 8 deletions

View File

@ -64,6 +64,11 @@ class TownieForm(Form):
label='display name',
required=False)
referral = CharField(
required=False,
label='did a townie refer you? put their handle here.',
help_text="this is optional and just helps us when reviewing your application.")
reasons = CharField(
widget=Textarea,
required=True,
@ -80,14 +85,6 @@ class TownieForm(Form):
Do you want to socialize? Make something? Learn stuff?
""".strip())
community = CharField(
widget=Textarea,
required=True,
label='what is an intentional community?',
help_text="""
Just a quick definition is fine, no need for an essay or anything.
""".strip())
socials = CharField(
widget=Textarea,
required=False,

View File

@ -45,6 +45,9 @@ class Townie(User):
shell = CharField(max_length=50, default="/bin/bash")
reviewed = BooleanField(default=False)
reasons = TextField(blank=True, null=False, default='')
plans = TextField(blank=True, null=False, default='')
socials = TextField(blank=True, null=False, default='')
referral = CharField(max_length=100, null=True)
displayname = CharField(max_length=100, blank=False, null=False)
@property