diff --git a/templates/devices.html b/templates/devices.html index 9c164cd..a109c79 100644 --- a/templates/devices.html +++ b/templates/devices.html @@ -176,6 +176,13 @@ // Obsługa przycisku restartu w prompt document.getElementById('mass-firmware-reboot-btn').addEventListener('click', function() { promptDiv.style.display = 'none'; + + // Wysyłamy reboot dla każdego wybranego urządzenia + selectedDevices.forEach(function(id) { + fetch("{{ url_for('restart_device', device_id=0) }}".replace("0", id), { method: 'POST' }) + .catch(function(error){ console.error('Błąd wysyłania reboot dla urządzenia ' + id, error); }); + }); + // Pokaż overlay z paskiem postępu dla reboot (2 minuty) var overlay = document.getElementById('mass-firmware-update-overlay'); overlay.style.display = 'block';