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

WebUI component:

- Added Endpoint Name in Link, Service and Slice
parent adfd2178
No related branches found
No related tags found
2 merge requests!142Release TeraFlowSDN 2.1,!71OFC'23 + IETF L2VPN Device Driver + Device Controllers + Multiple small improvements
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
<thead> <thead>
<tr> <tr>
<th scope="col">Endpoint UUID</th> <th scope="col">Endpoint UUID</th>
<th scope="col">Name</th>
<th scope="col">Device</th> <th scope="col">Device</th>
<th scope="col">Endpoint Type</th> <th scope="col">Endpoint Type</th>
</tr> </tr>
...@@ -44,6 +45,9 @@ ...@@ -44,6 +45,9 @@
<tbody> <tbody>
{% for endpoint in link.link_endpoint_ids %} {% for endpoint in link.link_endpoint_ids %}
<tr> <tr>
<td>
{{ endpoint.endpoint_uuid.uuid }}
</td>
<td> <td>
{{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }} {{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }}
</td> </td>
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
<thead> <thead>
<tr> <tr>
<th scope="col">Endpoint UUID</th> <th scope="col">Endpoint UUID</th>
<th scope="col">Name</th>
<th scope="col">Device</th> <th scope="col">Device</th>
<th scope="col">Endpoint Type</th> <th scope="col">Endpoint Type</th>
</tr> </tr>
...@@ -62,6 +63,9 @@ ...@@ -62,6 +63,9 @@
<tbody> <tbody>
{% for endpoint in service.service_endpoint_ids %} {% for endpoint in service.service_endpoint_ids %}
<tr> <tr>
<td>
{{ endpoint.endpoint_uuid.uuid }}
</td>
<td> <td>
{{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }} {{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }}
</td> </td>
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
<thead> <thead>
<tr> <tr>
<th scope="col">Endpoint UUID</th> <th scope="col">Endpoint UUID</th>
<th scope="col">Name</th>
<th scope="col">Device</th> <th scope="col">Device</th>
<th scope="col">Endpoint Type</th> <th scope="col">Endpoint Type</th>
</tr> </tr>
...@@ -62,6 +63,9 @@ ...@@ -62,6 +63,9 @@
<tbody> <tbody>
{% for endpoint in slice.slice_endpoint_ids %} {% for endpoint in slice.slice_endpoint_ids %}
<tr> <tr>
<td>
{{ endpoint.endpoint_uuid.uuid }}
</td>
<td> <td>
{{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }} {{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }}
</td> </td>
......
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