summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ogcp/templates/actions/image_details.html2
-rw-r--r--ogcp/views.py5
2 files changed, 5 insertions, 2 deletions
diff --git a/ogcp/templates/actions/image_details.html b/ogcp/templates/actions/image_details.html
index a4feb55..e54d3e8 100644
--- a/ogcp/templates/actions/image_details.html
+++ b/ogcp/templates/actions/image_details.html
@@ -1,4 +1,4 @@
-{% extends 'base.html' %}
+{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% block content %}
diff --git a/ogcp/views.py b/ogcp/views.py
index ae67b1e..cb1f4de 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -1015,7 +1015,10 @@ def action_image_info():
form.permissions.data = image['permissions']
form.software_id.data = image['software_id']
- return render_template('actions/image_details.html', form=form)
+ images = g.server.get('/images').json()['images']
+
+ return render_template('actions/image_details.html', form=form,
+ images=images)
@app.route('/action/image/delete', methods=['GET', 'POST'])
@login_required