From 82944b9c38570ae5e487d4243e1d851b81ed0296 Mon Sep 17 00:00:00 2001 From: Ian Renton Date: Fri, 10 Apr 2026 08:02:45 +0100 Subject: [PATCH] Layout tweaks --- templates/about.html | 2 +- templates/add_spot.html | 4 ++-- templates/alerts.html | 4 ++-- templates/bands.html | 6 +++--- templates/base.html | 6 +++--- templates/conditions.html | 4 ++-- templates/map.html | 6 +++--- templates/spots.html | 6 +++--- templates/status.html | 4 ++-- webassets/js/spotsbandsandmap.js | 8 ++++---- 10 files changed, 25 insertions(+), 25 deletions(-) diff --git a/templates/about.html b/templates/about.html index 50cac74..95931df 100644 --- a/templates/about.html +++ b/templates/about.html @@ -67,7 +67,7 @@

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 dd8c7f2..efbe0a9 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 250c949..850e0fb 100644 --- a/templates/alerts.html +++ b/templates/alerts.html @@ -56,8 +56,8 @@ - - + + {% end %} \ No newline at end of file diff --git a/templates/bands.html b/templates/bands.html index 00235c2..1697129 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 060f57d..50d1114 100644 --- a/templates/base.html +++ b/templates/base.html @@ -46,9 +46,9 @@ crossorigin="anonymous"> - - - + + + diff --git a/templates/conditions.html b/templates/conditions.html index 2ff9c26..274dffa 100644 --- a/templates/conditions.html +++ b/templates/conditions.html @@ -230,8 +230,8 @@ - - + + diff --git a/templates/map.html b/templates/map.html index 14e8b50..7e85a71 100644 --- a/templates/map.html +++ b/templates/map.html @@ -79,9 +79,9 @@ - - - + + + {% end %} \ No newline at end of file diff --git a/templates/spots.html b/templates/spots.html index 523dcfb..7cac866 100644 --- a/templates/spots.html +++ b/templates/spots.html @@ -90,9 +90,9 @@ - - - + + + {% end %} \ No newline at end of file diff --git a/templates/status.html b/templates/status.html index 0dbd0d4..94cdf6c 100644 --- a/templates/status.html +++ b/templates/status.html @@ -59,8 +59,8 @@ - - + + diff --git a/webassets/js/spotsbandsandmap.js b/webassets/js/spotsbandsandmap.js index 171d794..5a4ab37 100644 --- a/webassets/js/spotsbandsandmap.js +++ b/webassets/js/spotsbandsandmap.js @@ -19,7 +19,7 @@ function addBandToggleColourCSS(band_options) { // Generate bands filter card. This one is a special case. function generateBandsMultiToggleFilterCard(band_options) { - var $grid = $('
'); + var $grid = $('
'); band_options.forEach(o => { var domSafeName = o["name"].replace(/^[^A-Za-z0-9]+|[^\w]+/gi, ""); $grid.append(`
`); @@ -40,7 +40,7 @@ function setHamHFBandToggles() { // Generate SIGs filter card. This one is also a special case. function generateSIGsMultiToggleFilterCard(sig_options) { - var $grid = $('
'); + var $grid = $('
'); sig_options.forEach(o => { var domSafeName = o["name"].replace(/^[^A-Za-z0-9]+|[^\w]+/gi, ""); $grid.append(`
`); @@ -53,7 +53,7 @@ function generateSIGsMultiToggleFilterCard(sig_options) { // Generate modes filter card. This one is also a special case. function generateModesMultiToggleFilterCard(mode_options) { - var $grid = $('
'); + var $grid = $('
'); mode_options.forEach(o => { var domSafeName = o.replace(/^[^A-Za-z0-9]+|[^\w]+/gi, ""); $grid.append(`
`); @@ -84,7 +84,7 @@ function setDigiModeToggles() { // set which ones are enabled by default based on config rather than having them all enabled by default. We also sanitise // names here for HTML elements. function generateSourcesMultiToggleFilterCard(source_options, sources_enabled_by_default) { - var $grid = $('
'); + var $grid = $('
'); source_options.forEach(o => { var enable = sources_enabled_by_default.includes(o); var domSafeName = o.replace(/^[^A-Za-z0-9]+|[^\w]+/gi, "");