diff --git a/ogcp/templates/dashboard.html b/ogcp/templates/dashboard.html
index 0f022c3..c2b10e8 100644
--- a/ogcp/templates/dashboard.html
+++ b/ogcp/templates/dashboard.html
@@ -66,5 +66,20 @@
{% endfor %}
+
+
+
+ {% for oglive in oglive_list['oglive'] %}
+ -
+ {{ oglive['directory'] }}
+ {% if loop.index0 == oglive_list['default'] %}
+ (default)
+ {% endif %}
+
+ {% endfor %}
+
+
{% endblock %}
diff --git a/ogcp/views.py b/ogcp/views.py
index e9a40c8..c66ada8 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -125,8 +125,10 @@ def index():
images = images_response.json()['images']
images.sort(key=image_modified_date_from_str, reverse=True)
disk = images_response.json()['disk']
+ oglive_list = g.server.get('/oglive/list').json()
return render_template('dashboard.html', clients=clients,
- images=images, disk=disk)
+ images=images, disk=disk,
+ oglive_list=oglive_list)
return render_template('base.html')
@app.route('/login', methods=['GET', 'POST'])