Feat(Project Hub): Apply for Founding Partner Program page created with database structure and methods.
This commit is contained in:
@@ -50,78 +50,78 @@ class Filters_Assessment(Form_Base):
|
||||
id_assessment = SelectField(
|
||||
'Assessment'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_weather = SelectField(
|
||||
'Weather'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_lighting_level = SelectField(
|
||||
'Lighting Level'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_location = SelectField(
|
||||
'Location'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_user_handler = SelectField(
|
||||
'Handler'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
"""
|
||||
id_distraction_type = SelectField(
|
||||
'Distraction Type'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_intensity_level_emotional = SelectField(
|
||||
'Intensity Level Emotional'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_intensity_level_scent = SelectField(
|
||||
'Intensity Level Scent'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_intensity_level_sight = SelectField(
|
||||
'Intensity Level Sight'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_intensity_level_sound = SelectField(
|
||||
'Intensity Level Sound'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_intensity_level_touch = SelectField(
|
||||
'Intensity Level Touch'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_command_category = SelectField(
|
||||
'Command Category'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_command = SelectField(
|
||||
'Command'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_command_modality = SelectField(
|
||||
'Command Modality'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_bribe = SelectField(
|
||||
'Bribe'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
"""
|
||||
active_only = BooleanField(
|
||||
|
||||
@@ -37,7 +37,7 @@ class Filters_Calendar_Entry(Form_Base):
|
||||
id_calendar_entry_type = SelectField(
|
||||
'Type'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
active_only = BooleanField(
|
||||
'Active'
|
||||
|
||||
@@ -37,7 +37,7 @@ class Filters_Command(Form_Base):
|
||||
id_command_category = SelectField(
|
||||
'Command Category'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
active_only = BooleanField(
|
||||
'Active'
|
||||
|
||||
@@ -43,32 +43,32 @@ class Filters_Command_Button_Link(Form_Base):
|
||||
id_command_category = SelectField(
|
||||
'Command Category'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_command = SelectField(
|
||||
'Command'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_button_shape = SelectField(
|
||||
'Shape'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_colour = SelectField(
|
||||
'Colour'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_button_icon = SelectField(
|
||||
'Icon'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_location = SelectField(
|
||||
'Location'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
active_only = BooleanField(
|
||||
'Active'
|
||||
|
||||
@@ -39,17 +39,17 @@ class Filters_Dog_Command_Link(Form_Base):
|
||||
id_dog = SelectField(
|
||||
'Dog'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_command_category = SelectField(
|
||||
'Command Category'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
id_command = SelectField(
|
||||
'Command'
|
||||
, choices = [Form_Base.get_select_option_all()]
|
||||
, default = Form_Base.get_select_option_default_value()
|
||||
, default = Form_Base.get_select_valid_option_default_value()
|
||||
)
|
||||
active_only = BooleanField(
|
||||
'Active'
|
||||
|
||||
Reference in New Issue
Block a user