From 7a28568a3583b2d5bb145b3bd108f4640502cfff Mon Sep 17 00:00:00 2001 From: Victoria Earl Date: Wed, 1 May 2024 17:42:58 -0400 Subject: [PATCH] Update dealer reg form Changes requested via email. --- magprime/forms.py | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/magprime/forms.py b/magprime/forms.py index 32e13ef..dc61073 100644 --- a/magprime/forms.py +++ b/magprime/forms.py @@ -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.") @@ -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 What do you sell? 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 What do you sell? 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 " + "accessibility@magfest.org.") @MagForm.form_mixin