-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes requested via email.
- Loading branch information
Showing
1 changed file
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <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 | ||
|