From 8b0c7a16e75c31ffdb70512edeccaf14979f61c5 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Thu, 16 Oct 2025 13:34:35 -0700 Subject: [PATCH] Start adding language support --- meshview/templates/map.html | 434 +++++++++++++++++++----------------- meshview/web.py | 2 +- 2 files changed, 225 insertions(+), 211 deletions(-) diff --git a/meshview/templates/map.html b/meshview/templates/map.html index 49ce025..9ac65e5 100644 --- a/meshview/templates/map.html +++ b/meshview/templates/map.html @@ -72,10 +72,10 @@ {% block body %}
- Show Routers Only + Show Routers Only
- +
@@ -87,21 +87,6 @@ crossorigin> -{% endblock %} \ No newline at end of file + +{% endblock %} diff --git a/meshview/web.py b/meshview/web.py index 54f015b..613bdbe 100644 --- a/meshview/web.py +++ b/meshview/web.py @@ -1197,7 +1197,7 @@ async def map(request): ), content_type="text/html", ) - except Exception: + except Exception as e: return web.Response( text="An error occurred while processing your request.", status=500,