Browse Source

modify selected_choices to production category

weichen 3 years ago
parent
commit
47feffc932
1 changed files with 3 additions and 3 deletions
  1. 3 3
      backstage/blogs/forms.py

+ 3 - 3
backstage/blogs/forms.py

@@ -4,9 +4,9 @@ from wtforms import StringField, SelectField
 from wtforms.validators import DataRequired
 
 
-selected_choices = [('expertise_in_interior_decorating', '裝修專業'),
-                    ('house_style_design', '風格規劃'),
-                    ('home_inspection', '驗屋交屋')]
+selected_choices = [('home_aesthetics', '居家美學'),
+                    ('room_planner_expertise', '規劃師QA'),
+                    ('home_inspection_knowledge', '驗屋知識')]
 
 
 class BlogCreateForm(FlaskForm):