NEW MODAL informacje o serwerze

This commit is contained in:
Mateusz Gruszczyński 2025-03-09 14:36:31 +01:00
parent 9714954828
commit 0a80e38564

View File

@ -9,7 +9,7 @@
text-align: left; text-align: left;
} }
.badge-status { .badge-status {
font-size: 0.85em; font-size: 0.73em;
} }
.action-btns a, .action-btns button { .action-btns a, .action-btns button {
margin-right: 4px; margin-right: 4px;
@ -20,7 +20,7 @@
{% block content %} {% block content %}
<div class="container py-4"> <div class="container py-4">
<div class="card shadow-sm"> <div class="card shadow-sm">
<div class="card-header bg-primary text-white"> <div class="card-header">
<h2 class="mb-0">Lista serwerów</h2> <h2 class="mb-0">Lista serwerów</h2>
</div> </div>
<div class="card-body table-responsive"> <div class="card-body table-responsive">
@ -28,7 +28,7 @@
<thead> <thead>
<tr> <tr>
<th>ID</th> <th>ID</th>
<th>Nazwa hosta</th> <th>Nazwa serwera</th>
<th>Użytkownik</th> <th>Użytkownik</th>
<th>Port</th> <th>Port</th>
<th>Typ</th> <th>Typ</th>
@ -54,9 +54,9 @@
<td>{{ '-' if h.use_daemon and h.type == 'linux' else h.username }}</td> <td>{{ '-' if h.use_daemon and h.type == 'linux' else h.username }}</td>
<td>{{ '-' if h.use_daemon and h.type == 'linux' else h.port }}</td> <td>{{ '-' if h.use_daemon and h.type == 'linux' else h.port }}</td>
<td> <td>
<span class="badge bg-secondary">{{ 'Linux (Demon)' if h.use_daemon else h.type.capitalize() }}</span> <span class="badge bg-secondary">{{ 'Linux (daemon)' if h.use_daemon else h.type.capitalize() }}</span>
</td> </td>
<td>{{ '- używa Demona -' if h.use_daemon else h.auth_method|capitalize }}</td> <td>{{ '- linux daemon -' if h.use_daemon else h.auth_method|capitalize }}</td>
<td>{{ h.preferred_hostfile.title if h.preferred_hostfile else '(Default)' }}</td> <td>{{ h.preferred_hostfile.title if h.preferred_hostfile else '(Default)' }}</td>
<td> <td>
<form method="POST" action="{{ url_for('update_host_automation', id=h.id) }}"> <form method="POST" action="{{ url_for('update_host_automation', id=h.id) }}">
@ -111,7 +111,7 @@
<button type="button" class="btn-close" data-bs-dismiss="modal"></button> <button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div> </div>
<div class="modal-body"> <div class="modal-body">
<p><strong>Host:</strong> <span id="modal-hostname"></span> (<span id="modal-ip"></span>)</p> <p><strong>Serwer:</strong> <span id="modal-hostname"></span></p>
<label><strong>CPU:</strong></label> <label><strong>CPU:</strong></label>
<div class="progress mb-2"> <div class="progress mb-2">
<div id="modal-cpu" class="progress-bar" role="progressbar"></div> <div id="modal-cpu" class="progress-bar" role="progressbar"></div>