summaryrefslogtreecommitdiffstats
path: root/ogcp
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-08-24 12:24:00 +0200
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-09-27 09:48:35 +0200
commit43d2df0e7d02a145f4d0b491637367b1a74d2619 (patch)
treefb96794a28add4cfe9a56f2b588ed34497550bb5 /ogcp
parent9ca010a981bb7c0a4dcc91fb0bcfdf0eb086fdb4 (diff)
Delete center using the scopes tree
With this commit users can select a center from the scopes tree, and then delete it.
Diffstat (limited to 'ogcp')
-rw-r--r--ogcp/views.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/ogcp/views.py b/ogcp/views.py
index 8a0d8ba..2327b19 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -1285,10 +1285,17 @@ def action_center_delete():
flash(_('Center deleted successfully'), category='info')
return redirect(url_for("scopes"))
else:
+ params = request.args.to_dict()
+ if not params.get('scope-center'):
+ flash(_('Please, select one center'), category='error')
+ return redirect(url_for('scopes'))
r = g.server.get('/scopes')
+ selected_center_id = params['scope-center']
centers = parse_scopes_from_tree(r.json(), 'center')
- centers = [(center['id'], center['name']) for center in centers]
- form.center.choices = list(centers)
+ selected_center = [(center['id'], center['name']) for center in centers
+ if center['id'] == int(selected_center_id)]
+ form.center.choices = selected_center
+ form.center.render_kw = {'readonly': True}
scopes, clients = get_scopes()
return render_template('actions/delete_center.html', form=form,
scopes=scopes)