1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 09:13:23 -05:00
This commit is contained in:
Drew Larson 2016-05-30 21:33:20 -06:00
parent 40b88097d1
commit bb5d77b185

View File

@ -10,7 +10,8 @@ logger = logging.getLogger('bikeshop')
class MembershipForm(ModelForm):
member = CharField(required=True, widget=HiddenInput())
self_ident_other = CharField(required=False, label='Self identification', widget=TextInput(attrs={'class': 'mdl-textfield__input'}))
self_ident_other = CharField(required=False, label='Self identification',
widget=TextInput(attrs={'class': 'mdl-textfield__input'}))
gender_other = CharField(required=False, label='Other', widget=TextInput(attrs={'class': 'mdl-textfield__input'}))
safe_space = BooleanField(required=True, widget=CheckboxInput(
attrs={'class': 'mdl-checkbox__input'}