Skip to content

Commit

Permalink
Merge branch 'devel' of github.com:grycap/im-dashboard into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Jul 16, 2024
2 parents 18fecd5 + 3cc96e6 commit 0949fd2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/templates/config_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
{% else %}
<li class="nav-item"><a class="nav-link" data-id="#InputValues" data-bs-toggle="tab" href=#InputValues>Input Values</a></li>
{% endif %}
<li class="nav-item"><a class="nav-link {% if not creds %} active{%endif%}" data-id="#Advanced" data-bs-toggle="tab" href=#Advanced>Cloud Provider Selection</a></li> <!-- always create advanced tab -->
<li class="nav-item"><a class="nav-link {% if not creds %} active{%endif%}" data-id="#Advanced" data-bs-toggle="tab" href=#Advanced>Cloud Provider</a></li> <!-- always create advanced tab -->
</ul>
<!-- end tab creation section -->

Expand Down
2 changes: 1 addition & 1 deletion app/templates/default_form.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- start tabs creation section -->
<ul class="nav nav-tabs">
<li class="nav-item"><a class="nav-link {% if creds %}active{%endif%}" data-id="#InputValues" data-bs-toggle="tab" href="#InputValues">Input Values</a></li>
<li class="nav-item"><a class="nav-link {% if not creds %}active{%endif%}" data-id="#Advanced" data-bs-toggle="tab" href="#Advanced">Cloud Provider Selection</a></li>
<li class="nav-item"><a class="nav-link {% if not creds %}active{%endif%}" data-id="#Advanced" data-bs-toggle="tab" href="#Advanced">Cloud Provider</a></li>
</ul>
<!-- end tab creation section -->
<div class="tab-content">
Expand Down
4 changes: 2 additions & 2 deletions app/templates/service_creds.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ <h4 class="font-weight-bold text-primary">Cloud Credentials</h4>
{% if 'vo' in cred %}
<br><strong>VO: </strong> {{cred["vo"]}}
{% if session['vos'] and cred['vo'] not in session['vos'] %}
<i class='fas fa-exclamation-triangle text-warning' title="VO currently not available for the user!. It may cause errors in the Cloud Provider Selection list."></i>
<i class='fas fa-exclamation-triangle text-warning' title="VO currently not available for the user!. It may cause errors in the Cloud Provider list."></i>
{% endif %}
{% if 'project_id' not in cred %}
<i class='fas fa-exclamation-triangle text-danger' title="Site does not publish this VO on AppDB!. It may cause errors in the Cloud Provider Selection list."></i>
<i class='fas fa-exclamation-triangle text-danger' title="Site does not publish this VO on AppDB!. It may cause errors in the Cloud Provider list."></i>
{% endif %}
{% endif %}
{% if 'host' in cred and 'tenant' in cred %}
Expand Down

0 comments on commit 0949fd2

Please sign in to comment.