starting to be usable.

This commit is contained in:
Kalzu Rekku
2025-06-12 23:12:19 +03:00
parent 4e31fe7cce
commit a1f4fc556b
8 changed files with 263 additions and 153 deletions

View File

@ -10,7 +10,7 @@
<div class="header-container">
<h1>Node Monitoring System</h1>
<p>Total Nodes: <span id="node-count">0</span></p>
<p>Service UUID: <code>{{ service_uuid }}</code></p>
<p>Service UUID: <code>{{ service_uuid }}</code></p> <!-- ALWAYS DISPLAYED -->
</div>
<div id="node-grid-container">

View File

@ -24,6 +24,7 @@
</div>
</div>
<div id="log-table-container" data-service-uuid="{{ service_uuid }}">
{# The initial logs are rendered by Jinja2 here #}
{% if logs %}
<table class="log-table">
<thead>
@ -63,4 +64,3 @@
<script src="{{ url_for('static', path='/logs.js') }}"></script>
</body>
</html>