49 lines
2.9 KiB
HTML
49 lines
2.9 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Ustawienia - SSL Monitor{% endblock %}
|
|
{% block content %}
|
|
<div class="container mt-4">
|
|
<h2>Ustawienia</h2>
|
|
<form method="POST" action="{{ url_for('app_settings') }}">
|
|
<div class="mb-3">
|
|
<label for="check_interval_minutes" class="form-label">Częstotliwość sprawdzania (minuty)</label>
|
|
<input type="number" class="form-control" id="check_interval_minutes" name="check_interval_minutes" value="{{ settings.check_interval_minutes }}">
|
|
</div>
|
|
<div class="form-check mb-3">
|
|
<input type="checkbox" class="form-check-input" id="pushover_enabled" name="pushover_enabled" {% if settings.pushover_enabled %}checked{% endif %}>
|
|
<label class="form-check-label" for="pushover_enabled">Włącz powiadomienia Pushover</label>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="pushover_token" class="form-label">Pushover Token</label>
|
|
<input type="text" class="form-control" id="pushover_token" name="pushover_token" value="{{ settings.pushover_token }}">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="pushover_userkey" class="form-label">Pushover User Key</label>
|
|
<input type="text" class="form-control" id="pushover_userkey" name="pushover_userkey" value="{{ settings.pushover_userkey }}">
|
|
</div>
|
|
<!-- Nowe pola dla konfiguracji alertów -->
|
|
<div class="mb-3">
|
|
<label for="alert_threshold_info" class="form-label">Informacyjne: Ilość dni przed wygaśnięciem dla powiadomienia</label>
|
|
<input type="number" class="form-control" id="alert_threshold_info" name="alert_threshold_info" value="{{ settings.alert_threshold_30 }}">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="alert_threshold_warning" class="form-label">Ostrzegawcze: Ilość dni przed wygaśnięciem dla powiadomienia</label>
|
|
<input type="number" class="form-control" id="alert_threshold_warning" name="alert_threshold_warning" value="{{ settings.alert_threshold_14 }}">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="alert_threshold_critical" class="form-label">Krytyczne: Ilość dni przed wygaśnięciem dla powiadomienia</label>
|
|
<input type="number" class="form-control" id="alert_threshold_critical" name="alert_threshold_critical" value="{{ settings.alert_threshold_7 }}">
|
|
</div>
|
|
<div class="form-check mb-3">
|
|
<input type="checkbox" class="form-check-input" id="alert_repeat" name="alert_repeat" {% if settings.alert_repeat %}checked{% endif %}>
|
|
<label class="form-check-label" for="alert_repeat">Wysyłaj powiadomienia wielokrotnie</label>
|
|
</div>
|
|
<!-- Nowe pole do kasowania logów -->
|
|
<div class="mb-3">
|
|
<label for="logs_retention_days" class="form-label">Kasuj logi starsze niż (dni)</label>
|
|
<input type="number" class="form-control" id="logs_retention_days" name="logs_retention_days" value="{{ settings.logs_retention_days }}">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Zapisz ustawienia</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|