Skip to content

Commit

Permalink
Merge pull request #617 from grycap/eu_node
Browse files Browse the repository at this point in the history
Eu node
  • Loading branch information
micafer authored Jan 17, 2025
2 parents 70d3e27 + cd99f7c commit 4b6f813
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ def showinfrastructures():
site_info += "Tenant: " + infra_data["site"]["tenant"]

if "node" in infra_data["site"] and infra_data["site"]["node"]:
site_info += "Node: " + infra_data["site"]["node"]
site_info += "<br>Node: " + infra_data["site"]["node"]
if "subscription_id" in infra_data["site"] and infra_data["site"]["subscription_id"]:
site_info += "Subs. ID: " + infra_data["site"]["subscription_id"]
if "vo" in infra_data["site"] and infra_data["site"]["vo"]:
Expand Down
2 changes: 1 addition & 1 deletion app/templates/service_creds.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h4 class="font-weight-bold text-primary">Cloud Credentials</h4>
<td><img src="{{ url_for('static', filename='images/' + cred['type'] + 'Row.png') }}"/></td>
<td>
{% if 'node' in cred %}
<strong>Node: </strong> {{cred["node"]}}
<strong>Node: </strong> {{cred["node"]}}<br>
{% endif %}
{% if 'host' in cred %}
<strong>Host: </strong> {{cred["host"]}}
Expand Down

0 comments on commit 4b6f813

Please sign in to comment.