add referral and remove community question
parent
d316fef6b6
commit
92177e7a66
|
@ -64,6 +64,11 @@ class TownieForm(Form):
|
||||||
label='display name',
|
label='display name',
|
||||||
required=False)
|
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(
|
reasons = CharField(
|
||||||
widget=Textarea,
|
widget=Textarea,
|
||||||
required=True,
|
required=True,
|
||||||
|
@ -80,14 +85,6 @@ class TownieForm(Form):
|
||||||
Do you want to socialize? Make something? Learn stuff?
|
Do you want to socialize? Make something? Learn stuff?
|
||||||
""".strip())
|
""".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(
|
socials = CharField(
|
||||||
widget=Textarea,
|
widget=Textarea,
|
||||||
required=False,
|
required=False,
|
||||||
|
|
|
@ -45,6 +45,9 @@ class Townie(User):
|
||||||
shell = CharField(max_length=50, default="/bin/bash")
|
shell = CharField(max_length=50, default="/bin/bash")
|
||||||
reviewed = BooleanField(default=False)
|
reviewed = BooleanField(default=False)
|
||||||
reasons = TextField(blank=True, null=False, default='')
|
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)
|
displayname = CharField(max_length=100, blank=False, null=False)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Reference in New Issue