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
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@
                        <thead>
                            <tr>
                                <th scope="col">Endpoint UUID</th>
                                <th scope="col">Name</th>
                                <th scope="col">Device</th>
                                <th scope="col">Endpoint Type</th>
                            </tr>
@@ -44,6 +45,9 @@
                        <tbody>
                              {% for endpoint in link.link_endpoint_ids %}
                              <tr>
                                   <td>
                                        {{ endpoint.endpoint_uuid.uuid }}
                                   </td>
                                   <td>
                                        {{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }}
                                   </td>
+4 −0
Original line number Diff line number Diff line
@@ -55,6 +55,7 @@
            <thead>
                <tr>
                    <th scope="col">Endpoint UUID</th>
                    <th scope="col">Name</th>
                    <th scope="col">Device</th>
                    <th scope="col">Endpoint Type</th>
                </tr>
@@ -62,6 +63,9 @@
            <tbody>
                {% for endpoint in service.service_endpoint_ids %}
                <tr>
                    <td>
                        {{ endpoint.endpoint_uuid.uuid }}
                   </td>
                    <td>
                        {{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }}
                    </td>
+4 −0
Original line number Diff line number Diff line
@@ -55,6 +55,7 @@
            <thead>
                <tr>
                    <th scope="col">Endpoint UUID</th>
                    <th scope="col">Name</th>
                    <th scope="col">Device</th>
                    <th scope="col">Endpoint Type</th>
                </tr>
@@ -62,6 +63,9 @@
            <tbody>
                {% for endpoint in slice.slice_endpoint_ids %}
                <tr>
                    <td>
                        {{ endpoint.endpoint_uuid.uuid }}
                   </td>
                    <td>
                        {{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }}
                    </td>