95 lines
4.0 KiB
HTML
95 lines
4.0 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Szczegóły urządzenia - RouterOS Update{% endblock %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<h2 class="mb-4">Szczegóły urządzenia</h2>
|
|
<div class="row">
|
|
<!-- Dane urządzenia -->
|
|
<div class="col-md-6 mb-3">
|
|
<div class="card h-100">
|
|
<div class="card-header bg-primary text-white">
|
|
Dane urządzenia
|
|
</div>
|
|
<div class="card-body">
|
|
<p><strong>Adres IP:</strong> {{ device.ip }}</p>
|
|
<p><strong>Port:</strong> {{ device.port }}</p>
|
|
<p><strong>Ostatnie sprawdzenie:</strong>
|
|
{% if device.last_check %}{{ device.last_check.strftime('%Y-%m-%d %H:%M:%S') }}{% else %}Brak{% endif %}
|
|
</p>
|
|
<p>
|
|
<strong>System:</strong> {{ device.current_version or 'Brak' }}<br>
|
|
<strong>Firmware:</strong> {{ device.current_firmware or 'N/A' }}
|
|
</p>
|
|
<p>
|
|
<strong>Branch aktualizacji:</strong> {{ device.branch|capitalize }}
|
|
</p>
|
|
<!-- Formularz zmiany branch -->
|
|
<form method="POST" action="{{ url_for('edit_device', device_id=device.id) }}">
|
|
<div class="input-group">
|
|
<select class="form-select" name="branch">
|
|
<option value="stable" {% if device.branch == 'stable' %}selected{% endif %}>Stable</option>
|
|
<option value="dev" {% if device.branch == 'dev' %}selected{% endif %}>Dev</option>
|
|
<option value="beta" {% if device.branch == 'beta' %}selected{% endif %}>Beta</option>
|
|
</select>
|
|
<button type="submit" class="btn btn-primary ms-2">Zmień</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Informacje o systemie -->
|
|
<div class="col-md-6 mb-3">
|
|
<div class="card h-100">
|
|
<div class="card-header bg-info text-white">
|
|
Informacje o systemie
|
|
</div>
|
|
<div class="card-body">
|
|
{% if resource.error %}
|
|
<div class="alert alert-danger" role="alert">
|
|
Błąd pobierania danych: {{ resource.error }}
|
|
</div>
|
|
{% else %}
|
|
<p><strong>Wersja systemu:</strong> {{ resource.version or 'Brak danych' }}</p>
|
|
<p><strong>Czas pracy:</strong> {{ resource.uptime or 'Brak danych' }}</p>
|
|
<p><strong>Obciążenie CPU:</strong> {{ resource['cpu-load'] or 'Brak' }}%</p>
|
|
<p>
|
|
<strong>Pamięć:</strong>
|
|
{% if resource['free-memory'] and resource['total-memory'] %}
|
|
{{ resource['free-memory'] }} wolnej / {{ resource['total-memory'] }} całkowita
|
|
{% else %}
|
|
Brak danych
|
|
{% endif %}
|
|
</p>
|
|
<p><strong>Wolne miejsce na dysku:</strong> {{ resource['free-hdd-space'] or 'Brak danych' }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Logi urządzenia -->
|
|
<div class="card mb-3">
|
|
<div class="card-header bg-secondary text-white">
|
|
Logi urządzenia
|
|
</div>
|
|
<div class="card-body">
|
|
<pre class="bg-light p-3" style="white-space: pre-wrap;">{{ device.last_log or 'Brak logów' }}</pre>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Akcje -->
|
|
<div class="mb-4">
|
|
<div class="btn-group" role="group">
|
|
<form method="POST" action="{{ url_for('update_device', device_id=device.id) }}" style="display: inline-block;">
|
|
<button type="submit" class="btn btn-warning me-2">Aktualizuj system</button>
|
|
</form>
|
|
<form method="POST" action="{{ url_for('update_firmware', device_id=device.id) }}" style="display: inline-block;">
|
|
<button type="submit" class="btn btn-danger me-2">Aktualizuj firmware</button>
|
|
</form>
|
|
<a href="{{ url_for('force_check', device_id=device.id) }}" class="btn btn-secondary me-2">Wymuś sprawdzenie</a>
|
|
</div>
|
|
<a href="{{ url_for('devices') }}" class="btn btn-outline-secondary ms-3">Powrót do listy urządzeń</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|