Skip to content

Commit

Permalink
Update dealer reg form
Browse files Browse the repository at this point in the history
Changes requested via email.
  • Loading branch information
kitsuta committed May 1, 2024
1 parent b6013e0 commit 7a28568
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions magprime/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ def __call__(self, field, choices=None, **kwargs):
return Markup(''.join(html))


@MagForm.form_mixin
class GroupInfo:
def tables_desc(self):
return "Amount of 6ft x 30in tables requested. MAGFest DOES NOT sell booth spaces, only tables."


@MagForm.form_mixin
class TableInfo:
has_prior_name = BooleanField("I have run a table under a different name at one of the past two in-person Super MAGFest events.")
Expand All @@ -83,8 +89,16 @@ def get_optional_fields(self, group, is_admin=False):
return optional_fields

def website_desc(self):
return Markup("The link to your main portfolio. Please include additional links to social media accounts or \
additional places to view your items in the <em>What do you sell?</em> box below.")
return Markup("The link to your main portfolio. Please include additional links to social media accounts or "
"additional places to view your items in the <em>What do you sell?</em> box below.")

def wares_desc(self):
return "You must include links to what you sell or a portfolio otherwise you will be automatically declined."

def special_needs_desc(self):
return Markup("Location Requests, People you'd like to be near/away from, etc. No guarantees that we can "
"accommodate any requests. Please direct accessibility requests to "
"<a href='mailto:[email protected]' target='_blank'>[email protected]</a>.")


@MagForm.form_mixin
Expand Down

0 comments on commit 7a28568

Please sign in to comment.