mirror of https://github.com/kf7eel/hbnet
31 lines
633 B
HTML
31 lines
633 B
HTML
{% extends 'flask_user/_public_base.html' %}
|
|
{% block content %}
|
|
<p> </p>
|
|
|
|
<div class="row">
|
|
|
|
<h1 style="text-align: center;">{{server}}/{{system}}</h1>
|
|
<br />
|
|
<br />
|
|
<h4 style="text-align: center;">Updated every 10 seconds.</h4>
|
|
|
|
<p style="text-align: center;"><a href="/generate_passphrase"><button type="button" class="btn btn-primary">Server(s)</button></a></p>
|
|
|
|
<table data-toggle="table" data-pagination="true" data-search="true" >
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>TG</th>
|
|
<th>Status</th>
|
|
<th>Options</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{table_data}}
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|