diff --git a/app/oaipmh/oai.py b/app/oaipmh/oai.py
index 69493b3a9..94b8f5a40 100644
--- a/app/oaipmh/oai.py
+++ b/app/oaipmh/oai.py
@@ -20,7 +20,6 @@
# under the License.
from lxml import etree # nosec
from datetime import datetime, timezone
-from urllib.parse import urlparse
from app.oaipmh.errors import Errors
diff --git a/app/static/images/dtgeo.png b/app/static/images/dtgeo.png
new file mode 100644
index 000000000..81041cc58
Binary files /dev/null and b/app/static/images/dtgeo.png differ
diff --git a/app/static/images/nomad_ai4eosc.png b/app/static/images/nomad_ai4eosc.png
new file mode 100644
index 000000000..40870dac1
Binary files /dev/null and b/app/static/images/nomad_ai4eosc.png differ
diff --git a/app/static/images/nomad_ai4eosc_join.png b/app/static/images/nomad_ai4eosc_join.png
new file mode 100644
index 000000000..e9e5055af
Binary files /dev/null and b/app/static/images/nomad_ai4eosc_join.png differ
diff --git a/app/templates/config_form.html b/app/templates/config_form.html
index 52904bedc..bd281c208 100644
--- a/app/templates/config_form.html
+++ b/app/templates/config_form.html
@@ -14,7 +14,7 @@
{% else %}
diff --git a/app/templates/infrastructures.html b/app/templates/infrastructures.html
index 9679036de..bbd4b193d 100644
--- a/app/templates/infrastructures.html
+++ b/app/templates/infrastructures.html
@@ -18,7 +18,11 @@
function setInfrState(infid, data) {
// Set state
var state = getSpanFromState(data["state"]) ;
- state += '
' + data["state"] + ' ';
+ if (data["state"] == "running") {
+ state += '
configuring ';
+ } else {
+ state += '
' + data["state"] + ' ';
+ }
state += '
';
state += '';
$('#' + infid + '_state').html(state);
@@ -27,6 +31,9 @@
var vms = '';
var delete_vms = '';
$.each( data["vm_states"], function( vmId, vmState ) {
+ if (vmState == "running") {
+ vmState = "configuring";
+ }
var tooltip = getSpanFromState(vmState) + vmState + '';
vms += '
';
vms += ' ' + vmId + '';
diff --git a/app/templates/service_creds.html b/app/templates/service_creds.html
index 782de23ae..fde001549 100644
--- a/app/templates/service_creds.html
+++ b/app/templates/service_creds.html
@@ -62,10 +62,10 @@
Cloud Credentials
{% if 'vo' in cred %}
VO: {{cred["vo"]}}
{% if session['vos'] and cred['vo'] not in session['vos'] %}
-
+
{% endif %}
{% if 'project_id' not in cred %}
-
+
{% endif %}
{% endif %}
{% if 'host' in cred and 'tenant' in cred %}
diff --git a/app/templates/vminfo.html b/app/templates/vminfo.html
index e2bfb33a2..4b759d9cb 100644
--- a/app/templates/vminfo.html
+++ b/app/templates/vminfo.html
@@ -60,7 +60,11 @@
VM ID {{ vmid }}:
{% else %}
{% endif %}
+ {% if state == "running" %}
+ configuring
+ {% else %}
{{ state }}
+ {% endif %}