lightshuttle-control 0.4.0

Local HTTP control plane and dashboard for LightShuttle
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "layout.html" %}

{% block title %}Resources — LightShuttle{% endblock %}

{% block content %}
<section class="resources">
  <h1>Resources</h1>
  <div
    id="resource-table"
    hx-get="/_partials/resources"
    hx-trigger="every 2s"
    hx-swap="outerHTML"
  >
    {% include "_status_table.html" %}
  </div>
</section>
{% endblock %}