summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2021-02-10 11:58:46 +0000
committerJose M. Guisado <jguisado@soleta.eu>2021-02-10 11:58:46 +0000
commit989dc5bd36959c785ffabab02eade3a0719e6093 (patch)
tree64146f30c76781d12424555f01faeb670e60a226
parent3eda3fa68487a81e67f844e01ad7a6edf646d627 (diff)
Add image create template
Image creation action was lacking a template to render the form. This patch adds said template. Also redirects to /scopes when the request was processed by the ogserver successfully.
-rw-r--r--ogcp/templates/actions/image_create.html11
-rw-r--r--ogcp/views.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/ogcp/templates/actions/image_create.html b/ogcp/templates/actions/image_create.html
new file mode 100644
index 0000000..2e2b4f9
--- /dev/null
+++ b/ogcp/templates/actions/image_create.html
@@ -0,0 +1,11 @@
+{% extends 'base.html' %}
+{% import "bootstrap/wtf.html" as wtf %}
+
+{% block content %}
+
+{{ wtf.quick_form(form,
+ action=url_for('action_image_create'),
+ method='post',
+ button_map={'create': 'primary'}) }}
+
+{% endblock %}
diff --git a/ogcp/views.py b/ogcp/views.py
index e2ecaf4..14db2dd 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -443,7 +443,7 @@ def action_image_create():
"center_id": r.json()["center"]}
r = g.server.post('/image/create', payload)
if r.status_code == requests.codes.ok:
- return make_response("200 OK", 200)
+ return redirect(url_for("scopes"))
return make_response("400 Bad Request", 400)
else:
ips = parse_ips(request.args.to_dict())