| <!-- |
| SPDX-FileCopyrightText: 2022-present Intel Corporation |
| SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org> |
| SPDX-License-Identifier: Apache-2.0 |
| --> |
| |
| <html> |
| <head> |
| <title>Person Detection - Aether Edge Application</title> |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> |
| <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script> |
| </head> |
| <body> |
| <main> |
| <div class="container"> |
| <div class=row> |
| <h2 class="pb-2 border-bottom">Person Detection - Aether Edge Application</h2> |
| </div> |
| <div class="row"> |
| {% for x, y in devices.items() %} |
| <div class="col-12"> |
| <div class="card"> |
| <img src="{{ url_for('video_feed', device=x) }}" class="card-img-top" alt="..."> |
| <div class="card-body"> |
| <h5 class="card-title">Camera {{ x }}</h5> |
| <p class="card-text">{{ y }}</p> |
| </div> |
| </div> |
| </div> |
| {% endfor %} |
| </div> |
| </div> |
| </main> |
| <h1></h1> |
| </body> |
| </html> |