diff options
author | Javier Hernandez <jhernandez@soleta.eu> | 2024-02-06 12:14:14 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-02-09 13:17:29 +0100 |
commit | a609ede7a8ff94921f703ee395e3be3426a6da2d (patch) | |
tree | 155adfce2ab6892d4a5c56497dfaddc3859d100d /ogcp/forms/action_forms.py | |
parent | d9537005768d6bad3b6ccdc07678217d3be9b9c3 (diff) |
views: Add update room
Add view to modify room information such as name, gateway and netmask
Diffstat (limited to 'ogcp/forms/action_forms.py')
-rw-r--r-- | ogcp/forms/action_forms.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py index 8586665..525f45b 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -180,6 +180,7 @@ class DeleteCenterForm(FlaskForm): class RoomForm(FlaskForm): server = HiddenField() + room = HiddenField() center = SelectField(label=_l('Center'), validators=[InputRequired()]) name = StringField(label=_l('Room name'), |