summaryrefslogtreecommitdiffstats
path: root/ogcp/views.py
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2021-05-14 12:36:40 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2021-06-30 17:20:17 +0200
commit1e7fce971acd38f072a07cf436d2a94897176be3 (patch)
tree033c0679bab0681fffc0e77c7b4d969ff539d05e /ogcp/views.py
parent42dc44323e4cf0eaf0b563ba02f368942cf86e3d (diff)
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.
Diffstat (limited to 'ogcp/views.py')
-rw-r--r--ogcp/views.py19
1 files changed, 18 insertions, 1 deletions
diff --git a/ogcp/views.py b/ogcp/views.py
index 0505f66..1221478 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -11,7 +11,7 @@ from flask import (
from ogcp.forms.action_forms import (
WOLForm, PartitionForm, NewPartitionForm, ClientDetailsForm, HardwareForm,
SessionForm, ImageRestoreForm, ImageCreateForm, SoftwareForm, BootModeForm,
- RoomForm, DeleteRoomForm
+ RoomForm, DeleteRoomForm, CenterForm
)
from flask_login import (
current_user, LoginManager,
@@ -700,6 +700,23 @@ def action_refresh():
flash(_('Refresh request processed successfully'), category='info')
return redirect(url_for("scopes"))
+@app.route('/action/center/add', methods=['GET', 'POST'])
+@login_required
+def action_center_add():
+ form = CenterForm(request.form)
+ if request.method == 'POST':
+ payload = {"name": form.name.data,
+ "comment": form.comment.data}
+ r = g.server.post('/center/add', payload)
+ if r.status_code != requests.codes.ok:
+ flash(_('Server replied with error code when adding the center'),
+ category='error')
+ else:
+ flash(_('Center added successfully'), category='info')
+ return redirect(url_for("scopes"))
+ else:
+ return render_template('actions/add_center.html', form=form)
+
@app.route('/action/room/add', methods=['GET', 'POST'])
@login_required
def action_room_add():