feat(frontend): make external nodes table responsive

This commit is contained in:
Whispering Wind
2025-08-10 00:14:25 +03:30
committed by GitHub
parent 68822c5f4b
commit 68bd4f2b0a

View File

@ -236,16 +236,18 @@
<h3 class="card-title">External Nodes</h3> <h3 class="card-title">External Nodes</h3>
</div> </div>
<div class="card-body"> <div class="card-body">
<table class="table table-bordered table-striped" id="nodes_table"> <div class="table-responsive">
<thead> <table class="table table-bordered table-striped" id="nodes_table">
<tr> <thead>
<th>Node Name</th> <tr>
<th>IP Address / Domain</th> <th>Node Name</th>
<th>Action</th> <th>IP Address / Domain</th>
</tr> <th>Action</th>
</thead> </tr>
<tbody></tbody> </thead>
</table> <tbody></tbody>
</table>
</div>
<div id="no_nodes_message" class="alert alert-info" style="display: none;"> <div id="no_nodes_message" class="alert alert-info" style="display: none;">
No external nodes have been configured. No external nodes have been configured.
</div> </div>
@ -1416,4 +1418,4 @@
}); });
</script> </script>
{% endblock %} {% endblock %}