Files
ipam/static/js/export_csv.js
T
2025-05-27 17:55:08 +00:00

7 lines
277 B
JavaScript

document.querySelectorAll('.export-csv-btn').forEach(btn => {
btn.addEventListener('click', function(e) {
e.stopPropagation();
const subnetId = this.getAttribute('data-subnet-id');
window.location.href = `/subnet/${subnetId}/export_csv`;
});
});