summaryrefslogtreecommitdiffstats
path: root/ogcp/forms
diff options
context:
space:
mode:
Diffstat (limited to 'ogcp/forms')
-rw-r--r--ogcp/forms/action_forms.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py
index 75ec674..fe5280e 100644
--- a/ogcp/forms/action_forms.py
+++ b/ogcp/forms/action_forms.py
@@ -178,6 +178,8 @@ class RoomForm(FlaskForm):
validators=[InputRequired()])
netmask = StringField(label=_l('Netmask'),
validators=[InputRequired()])
+ gateway = StringField(label=_l('Gateway'),
+ validators=[InputRequired()])
submit = SubmitField(label=_l('Submit'))
class DeleteRoomForm(FlaskForm):