Skip to content
Snippets Groups Projects
Commit fa52178f authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Fixed WebUI HTTP templates

parent 9c971c7d
No related branches found
No related tags found
2 merge requests!294Release TeraFlowSDN 4.0,!268Resolve "(OPT) Integrate QKD tests in TFS CI/CD pipeline"
...@@ -105,9 +105,9 @@ ...@@ -105,9 +105,9 @@
</li> </li>
<li class="nav-item"> <li class="nav-item">
{% if '/qkd_app/' in request.path %} {% if '/qkd_app/' in request.path %}
<a class="nav-link active" aria-current="page" href="{{ url_for('app.home') }}">App</a> <a class="nav-link active" aria-current="page" href="{{ url_for('qkd_app.home') }}">QKD Apps</a>
{% else %} {% else %}
<a class="nav-link" href="{{ url_for('app.home') }}">App</a> <a class="nav-link" href="{{ url_for('qkd_app.home') }}">QKD Apps</a>
{% endif %} {% endif %}
</li> </li>
<li class="nav-item"> <li class="nav-item">
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
{% for app in apps %} {% for app in apps %}
<tr> <tr>
<td> <td>
{{ app.app_id.app_uuid.uuid }} {{ app.app_id.app_uuid.uuid }}
</td> </td>
<td> <td>
{{ ase.Name(app.app_status).replace('QKDAPPSTATUS_', '') }} {{ ase.Name(app.app_status).replace('QKDAPPSTATUS_', '') }}
...@@ -74,12 +74,14 @@ ...@@ -74,12 +74,14 @@
{% endif %} {% endif %}
</td> </td>
<td> <td>
<a href="{{ url_for('app.detail', app_uuid=app.app_id.app_uuid.uuid) }}"> <!--
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-eye" viewBox="0 0 16 16"> <a href="{{ url_for('qkd_app.detail', app_uuid=app.app_id.app_uuid.uuid) }}">
<path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z"/> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-eye" viewBox="0 0 16 16">
<path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z"/> <path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z"/>
</svg> <path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z"/>
</a> </svg>
</a>
-->
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment