Modify the front so that it allows QRZ.com and HamQTH credentials to be provided by the client (if none are provided, the lookups do not occur.)

This commit is contained in:
Ian Renton
2026-05-09 16:52:48 +01:00
parent f81ef4347f
commit 1ef8b36cb1
18 changed files with 224 additions and 46 deletions

View File

@@ -59,6 +59,20 @@
</div>
</div>
</div>
<div id="data-area" class="appearing-panel card mb-3">
{% module Template("widgets/data-area-header.html", web_ui_options=web_ui_options) %}
<div class="card-body">
<div class="row row-cols-1 row-cols-md-4 g-4">
<div class="col">
{% module Template("cards/qrz.html", web_ui_options=web_ui_options) %}
</div>
<div class="col">
{% module Template("cards/hamqth.html", web_ui_options=web_ui_options) %}
</div>
</div>
</div>
</div>
</div>
</div>
@@ -79,9 +93,9 @@
<script>
let spotProvidersEnabledByDefault = {% raw json_encode(web_ui_options["spot-providers-enabled-by-default"]) %};
</script>
<script src="/js/common.js?v=1778337802"></script>
<script src="/js/spotsbandsandmap.js?v=1778337802"></script>
<script src="/js/map.js?v=1778337802"></script>
<script src="/js/common.js?v=1778341968"></script>
<script src="/js/spotsbandsandmap.js?v=1778341968"></script>
<script src="/js/map.js?v=1778341968"></script>
<script>$(document).ready(function() { $("#nav-link-map").addClass("active"); }); <!-- highlight active page in nav --></script>
{% end %}