From 1e7fce971acd38f072a07cf436d2a94897176be3 Mon Sep 17 00:00:00 2001 From: Javier Sánchez Parra Date: Fri, 14 May 2021 12:36:40 +0200 Subject: Create "Add Center" form and view Creates "add center" form with "name" as required input and "comment" as optional input. In the future, the CenterForm can be used to display center information once such functionality lands in the ogserver. --- ogcp/forms/action_forms.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ogcp/forms') diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py index 0404e71..2286941 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -113,6 +113,12 @@ class ImageCreateForm(FlaskForm): description = StringField(label=_('Description')) create = SubmitField(label=_('Create')) +class CenterForm(FlaskForm): + name = StringField(label=_('Center name'), + validators=[InputRequired()]) + comment = StringField(label=_('Comment')) + submit = SubmitField(label=_('Submit')) + class RoomForm(FlaskForm): center = SelectField(label=_('Center'), validators=[InputRequired()]) -- cgit v1.2.3-18-g5258