NEW MODAL informacje o serwerze

This commit is contained in:
Mateusz Gruszczyński 2025-03-09 14:29:38 +01:00
parent 67c6e8a92e
commit 9714954828

View File

@ -11,9 +11,8 @@
.badge-status { .badge-status {
font-size: 0.85em; font-size: 0.85em;
} }
.action-btns a, .action-btns a, .action-btns button {
.action-btns button { margin-right: 4px;
margin-right: 3px;
} }
</style> </style>
{% endblock %} {% endblock %}
@ -45,7 +44,7 @@
{% for h in hosts %} {% for h in hosts %}
<tr> <tr>
<td>{{ h.id }}</td> <td>{{ h.id }}</td>
<td data-bs-toggle="tooltip" data-bs-placement="top" title="{{ h.raw_ip }}"> <td data-bs-toggle="tooltip" title="{{ h.raw_ip }}">
{% if h.use_daemon and h.type == 'linux' and h.daemon_url %} {% if h.use_daemon and h.type == 'linux' and h.daemon_url %}
{{ h.resolved_daemon }} {{ h.resolved_daemon }}
{% else %} {% else %}
@ -55,48 +54,38 @@
<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 badge-status bg-secondary">{{ 'Linux (Demon)' if h.use_daemon else h.type.capitalize() }}</span> <span class="badge bg-secondary">{{ 'Linux (Demon)' 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>{{ '- używa Demona -' 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) }}" style="display:inline;"> <form method="POST" action="{{ url_for('update_host_automation', id=h.id) }}">
<input type="hidden" name="setting" value="auto_deploy"> <input type="hidden" name="setting" value="auto_deploy">
<input type="checkbox" name="enabled" value="1" onchange="this.form.submit()" {% if h.auto_deploy_enabled %}checked{% endif %}> <input type="checkbox" name="enabled" value="1" onchange="this.form.submit()" {% if h.auto_deploy_enabled %}checked{% endif %}>
</form> </form>
</td> </td>
<td> <td>
<form method="POST" action="{{ url_for('update_host_automation', id=h.id) }}" style="display:inline;"> <form method="POST" action="{{ url_for('update_host_automation', id=h.id) }}">
<input type="hidden" name="setting" value="auto_backup"> <input type="hidden" name="setting" value="auto_backup">
<input type="checkbox" name="enabled" value="1" onchange="this.form.submit()" {% if h.auto_backup_enabled %}checked{% endif %}> <input type="checkbox" name="enabled" value="1" onchange="this.form.submit()" {% if h.auto_backup_enabled %}checked{% endif %}>
</form> </form>
</td> </td>
<td> <td>
<form method="POST" action="{{ url_for('update_host_automation', id=h.id) }}" style="display:inline;"> <form method="POST" action="{{ url_for('update_host_automation', id=h.id) }}">
<input type="hidden" name="setting" value="disable_regex"> <input type="hidden" name="setting" value="disable_regex">
<input type="checkbox" name="enabled" value="1" onchange="this.form.submit()" {% if h.disable_regex_deploy %}checked{% endif %}> <input type="checkbox" name="enabled" value="1" onchange="this.form.submit()" {% if h.disable_regex_deploy %}checked{% endif %}>
</form> </form>
</td> </td>
<td class="action-btns"> <td class="action-btns">
<a href="{{ url_for('edit_server', id=h.id) }}" class="btn btn-sm btn-outline-primary" title="Edytuj"> <a href="{{ url_for('edit_server', id=h.id) }}" class="btn btn-sm btn-primary">Edytuj</a>
<i class="fa fa-edit"></i>
</a>
{% if h.use_daemon and h.type == 'linux' %} {% if h.use_daemon and h.type == 'linux' %}
<button class="btn btn-sm btn-outline-info test-daemon-btn" data-host-id="{{ h.id }}" title="Testuj"> <button class="btn btn-sm btn-info test-daemon-btn" data-host-id="{{ h.id }}">Testuj</button>
<i class="fa fa-server"></i>
</button>
{% else %} {% else %}
<a href="{{ url_for('test_server_connection', id=h.id) }}" class="btn btn-sm btn-outline-info" title="Testuj"> <a href="{{ url_for('test_server_connection', id=h.id) }}" class="btn btn-sm btn-info">Testuj</a>
<i class="fa fa-server"></i>
</a>
{% endif %} {% endif %}
<a href="{{ url_for('server_backup', host_id=h.id) }}" class="btn btn-sm btn-outline-success" title="Backup"> <a href="{{ url_for('server_backup', host_id=h.id) }}" class="btn btn-sm btn-success">Backup</a>
<i class="fa fa-download"></i>
</a>
<form method="GET" action="{{ url_for('delete_server', id=h.id) }}" class="d-inline"> <form method="GET" action="{{ url_for('delete_server', id=h.id) }}" class="d-inline">
<button class="btn btn-sm btn-outline-danger" title="Usuń"> <button class="btn btn-sm btn-danger">Usuń</button>
<i class="fa fa-trash"></i>
</button>
</form> </form>
</td> </td>
</tr> </tr>
@ -106,15 +95,43 @@
</div> </div>
</div> </div>
<div class="text-center my-4"> <div class="text-center mt-4">
<a href="{{ url_for('add_server') }}" class="btn btn-primary">Dodaj nowy serwer</a> <a href="{{ url_for('add_server') }}" class="btn btn-primary">Dodaj nowy serwer</a>
<a href="{{ url_for('import_servers') }}" class="btn btn-outline-secondary">Importuj z CSV</a> <a href="{{ url_for('import_servers') }}" class="btn btn-secondary">Importuj z CSV</a>
<a href="{{ url_for('export_servers_to_csv') }}" class="btn btn-outline-secondary">Eksportuj do CSV</a> <a href="{{ url_for('export_servers_to_csv') }}" class="btn btn-secondary">Eksportuj do CSV</a>
</div> </div>
</div> </div>
<!-- Modal pozostaje bez zmian --> <!-- Modal z informacjami -->
{% include 'server_info_modal.html' %} <div class="modal fade" id="serverInfoModal" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Informacje o serwerze</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<p><strong>Host:</strong> <span id="modal-hostname"></span> (<span id="modal-ip"></span>)</p>
<label><strong>CPU:</strong></label>
<div class="progress mb-2">
<div id="modal-cpu" class="progress-bar" role="progressbar"></div>
</div>
<label><strong>Pamięć:</strong></label>
<div class="progress mb-2">
<div id="modal-mem" class="progress-bar bg-warning" role="progressbar"></div>
</div>
<label><strong>Dysk:</strong></label>
<div class="progress mb-2">
<div id="modal-disk" class="progress-bar bg-success" role="progressbar"></div>
</div>
<p><strong>Czas działania:</strong> <span id="modal-uptime"></span></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Zamknij</button>
</div>
</div>
</div>
</div>
{% endblock %} {% endblock %}