Export Button geht jetzt
Dieser Commit ist enthalten in:
@@ -301,9 +301,6 @@
|
||||
<div class="analytics-card">
|
||||
<h5>Berichte exportieren</h5>
|
||||
<div class="export-buttons">
|
||||
<button class="btn btn-outline-primary me-2" onclick="exportReport('pdf')">
|
||||
<i class="bi bi-file-pdf"></i> PDF Export
|
||||
</button>
|
||||
<button class="btn btn-outline-success me-2" onclick="exportReport('excel')">
|
||||
<i class="bi bi-file-excel"></i> Excel Export
|
||||
</button>
|
||||
@@ -435,7 +432,9 @@
|
||||
}
|
||||
|
||||
function exportReport(format) {
|
||||
alert(`Export-Funktion wird implementiert für Format: ${format.toUpperCase()}`);
|
||||
// Redirect to export endpoint with format parameter
|
||||
const hours = 24; // Default to 24 hours
|
||||
window.location.href = `/export/monitoring?format=${format}&hours=${hours}`;
|
||||
}
|
||||
|
||||
// Start auto-refresh
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren