Apr 1 2026: update area types list

This commit is contained in:
2026-04-01 14:53:03 -04:00
parent 812ce9ce26
commit 0c8572260c
+1 -1
View File
@@ -101,7 +101,7 @@ class FacilityForm(FlaskForm):
class AreaForm(FlaskForm): class AreaForm(FlaskForm):
name = StringField('Area Name', validators=[DataRequired(), Length(max=255)]) name = StringField('Area Name', validators=[DataRequired(), Length(max=255)])
area_type = SelectField('Area Type', choices=[ area_type = SelectField('Area Type', choices=[
('restroom','Restroom'), ('lobby','Lobby'), ('hallway','Hallway'), ('building','Building'), ('restroom','Restroom'), ('lobby','Lobby'), ('hallway','Hallway'),
('office','Office'), ('kitchen','Kitchen'), ('storage','Storage'), ('office','Office'), ('kitchen','Kitchen'), ('storage','Storage'),
('outdoor','Outdoor'), ('other','Other'), ('outdoor','Outdoor'), ('other','Other'),
], validators=[Optional()]) ], validators=[Optional()])