diff --git a/templates/base.html b/templates/base.html
index ef16c93..0c2b9ee 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -58,13 +58,13 @@
@@ -397,8 +397,6 @@
updateApplyConfigVisibility()
- updateSearchList()
-
});
function addGlobalStyle(css, id) {
@@ -435,36 +433,6 @@
}
});
}
-
- function updateSearchList() {
- $.getJSON("{{.basePath}}/api/subnet-ranges", null, function(data) {
- $("#status-selector option").remove();
- $("#status-selector").append(
- $("")
- .text("All")
- .val("All"),
- $("")
- .text("Enabled")
- .val("Enabled"),
- $("")
- .text("Disabled")
- .val("Disabled"),
- $("")
- .text("Connected")
- .val("Connected"),
- $("")
- .text("Disconnected")
- .val("Disconnected")
- );
- $.each(data, function(index, item) {
- $("#status-selector").append(
- $("")
- .text(item)
- .val(item)
- );
- });
- });
- }
// populateClient function for render new client info
// on the client page.
diff --git a/templates/clients.html b/templates/clients.html
index 54587a7..8c24d4e 100644
--- a/templates/clients.html
+++ b/templates/clients.html
@@ -362,10 +362,41 @@ Wireguard Clients
});
});
}
+
+ function updateSearchList() {
+ $.getJSON("{{.basePath}}/api/subnet-ranges", null, function(data) {
+ $("#status-selector option").remove();
+ $("#status-selector").append(
+ $("")
+ .text("All")
+ .val("All"),
+ $("")
+ .text("Enabled")
+ .val("Enabled"),
+ $("")
+ .text("Disabled")
+ .val("Disabled"),
+ $("")
+ .text("Connected")
+ .val("Connected"),
+ $("")
+ .text("Disconnected")
+ .val("Disconnected")
+ );
+ $.each(data, function(index, item) {
+ $("#status-selector").append(
+ $("")
+ .text(item)
+ .val(item)
+ );
+ });
+ });
+ }