Skip to content
detail.html 2.22 KiB
Newer Older
Lucie LONG's avatar
Lucie LONG committed
<!--
    Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/)
   
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
   
         http://www.apache.org/licenses/LICENSE-2.0
   
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
   -->
   {% extends 'base.html' %}
   
   {% block content %}
    <h1>Link {{ link.link_id.link_uuid.uuid }}</h1>
    <div class="row mb-3">
          <div class="col-sm-3">
               <button type="button" class="btn btn-success" onclick="window.location.href='{{ url_for('link.home') }}'">
                    <i class="bi bi-box-arrow-in-left"></i>
                    Back to link list
               </button>
          </div>
     </div>

     <br>
       <div class="row mb-3">
            <div class="col-sm-4">
                <b>UUID: </b>{{ link.link_id.link_uuid.uuid }}<br><br>
            </div>
            <div class="col-sm-8">
                    <table class="table table-striped table-hover">
                        <thead>
                            <tr>
                                <th scope="col">Endpoints</th>
                                <th scope="col">Type</th>
                            </tr>
                        </thead>
                        <tbody>
                              {% for end_point in link.link_endpoint_ids %}
                              <tr>
                                   <td>
                                        {{ end_point.endpoint_uuid.uuid }} 
                                   </td>
                                   <td>
                                        {{ end_point.endpoint_uuid.uuid }}
                                   </td>
                              </tr>
                              {% endfor %}
                        </tbody>
                    </table>
            </div>
        </div>

   {% endblock %}