This software is dedicated to the memory of Tom G1PJB, SK, a friend and colleague who sadly passed away around the time I started writing it in Autumn 2025. I was looking forward to showing it to you when it was done.
-
+
{% end %}
\ No newline at end of file
diff --git a/templates/add_spot.html b/templates/add_spot.html
index fd08302..90dc3e2 100644
--- a/templates/add_spot.html
+++ b/templates/add_spot.html
@@ -69,8 +69,8 @@
-
-
+
+
{% end %}
\ No newline at end of file
diff --git a/templates/alerts.html b/templates/alerts.html
index 4710652..a96c1e1 100644
--- a/templates/alerts.html
+++ b/templates/alerts.html
@@ -51,13 +51,13 @@
-
+
-
-
+
+
{% end %}
\ No newline at end of file
diff --git a/templates/bands.html b/templates/bands.html
index 4e58570..60b0d96 100644
--- a/templates/bands.html
+++ b/templates/bands.html
@@ -62,9 +62,9 @@
-
-
-
+
+
+
{% end %}
\ No newline at end of file
diff --git a/templates/base.html b/templates/base.html
index 19f5057..59d0d18 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -46,10 +46,10 @@
crossorigin="anonymous">
-
-
-
-
+
+
+
+
diff --git a/templates/conditions.html b/templates/conditions.html
index 73cf094..730c789 100644
--- a/templates/conditions.html
+++ b/templates/conditions.html
@@ -189,8 +189,8 @@
-
-
+
+
{% end %}
\ No newline at end of file
diff --git a/templates/map.html b/templates/map.html
index e8564f2..966c37e 100644
--- a/templates/map.html
+++ b/templates/map.html
@@ -70,9 +70,9 @@
-
-
-
+
+
+
{% end %}
\ No newline at end of file
diff --git a/templates/spots.html b/templates/spots.html
index 9013d06..cec290a 100644
--- a/templates/spots.html
+++ b/templates/spots.html
@@ -79,7 +79,7 @@
-
+
@@ -87,9 +87,9 @@
-
-
-
+
+
+
{% end %}
\ No newline at end of file
diff --git a/templates/status.html b/templates/status.html
index 6bfbd80..f035959 100644
--- a/templates/status.html
+++ b/templates/status.html
@@ -59,8 +59,8 @@
-
-
+
+
diff --git a/templates/widgets/conditions-area-header.html b/templates/widgets/conditions-area-header.html
deleted file mode 100644
index 942413e..0000000
--- a/templates/widgets/conditions-area-header.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/templates/widgets/filters-area-header.html b/templates/widgets/filters-area-header.html
index dd2a09e..c3b8db6 100644
--- a/templates/widgets/filters-area-header.html
+++ b/templates/widgets/filters-area-header.html
@@ -4,7 +4,7 @@
Filters
-
+
\ No newline at end of file
diff --git a/webassets/css/style.css b/webassets/css/style.css
index b9cd5b6..60afb58 100644
--- a/webassets/css/style.css
+++ b/webassets/css/style.css
@@ -193,25 +193,18 @@ tr.new td {
}
}
-/* Fudge apply our own "dark primary" and "dark danger" backgrounds as Bootstrap doesn't do this itself */
-[data-bs-theme=dark] tr.table-primary {
- --bs-table-bg: #053680;
- --bs-table-border-color: #021b42;
- --bs-table-color: white;
-}
-[data-bs-theme=dark] tr.table-danger {
- --bs-table-bg: #74272e;
- --bs-table-border-color: #530208;
- --bs-table-color: white;
-}
-
/* TABLE */
#table-container {
- border-radius: 3px;
+ border-radius: 5px;
+ border: 1px solid var(--bs-primary-border-subtle);
overflow: hidden;
}
+#table-container table{
+ margin-bottom: 0;
+}
+
/* MAP */
div#map {
diff --git a/webassets/js/alerts.js b/webassets/js/alerts.js
index b32ae55..725de28 100644
--- a/webassets/js/alerts.js
+++ b/webassets/js/alerts.js
@@ -54,25 +54,25 @@ function updateTable() {
let table = $("#table");
table.find('thead tr').empty();
if (showStartTime) {
- table.find('thead tr').append(`
${useLocalTime ? "Start (Local)" : "Start UTC"}
`);
+ table.find('thead tr').append(`
${useLocalTime ? "Start (Local)" : "Start UTC"}
`);
}
if (showEndTime) {
- table.find('thead tr').append(`
${useLocalTime ? "End (Local)" : "End UTC"}
`);
+ table.find('thead tr').append(`
${useLocalTime ? "End (Local)" : "End UTC"}
`);
}
if (showDX) {
- table.find('thead tr').append(`
DX
`);
+ table.find('thead tr').append(`
DX
`);
}
if (showFreqsModes) {
- table.find('thead tr').append(`
Frequencies & Modes
`);
+ table.find('thead tr').append(`
Frequencies & Modes
`);
}
if (showComment) {
- table.find('thead tr').append(`
Comment
`);
+ table.find('thead tr').append(`
Comment
`);
}
if (showSource) {
- table.find('thead tr').append(`
Source
`);
+ table.find('thead tr').append(`
Source
`);
}
if (showRef) {
- table.find('thead tr').append(`
Ref.
`);
+ table.find('thead tr').append(`
Ref.
`);
}
table.find('tbody').empty();
@@ -86,22 +86,22 @@ function updateTable() {
later = alerts.filter(a => moment.unix(a["start_time"]).utc().subtract(24, 'hours').isSameOrAfter());
if (onNow.length > 0) {
- table.find('tbody').append('