diff --git a/UpNext.md b/UpNext.md index fb1aa58..0fe1938 100644 --- a/UpNext.md +++ b/UpNext.md @@ -1,3 +1,7 @@ # What to do next: -* LDB to lookup and validate CRS or convert TIPLOC/STANOX to CRS before fetch. \ No newline at end of file +* Docker - nginx-proxy needs rebuilding and repushing. +* Docker - owlboard needs rebuilding and repushing. +* Frontend - Fix index.html form. +* Frontend - Implement message when API returns error state. +* Frontend - Add page builder. \ No newline at end of file diff --git a/static/board.html b/static/board.html index 63edff4..045e3a6 100644 --- a/static/board.html +++ b/static/board.html @@ -7,7 +7,7 @@ OwlBoard - Loading - + diff --git a/static/index.html b/static/index.html index bf29ab4..1bbdf8d 100644 --- a/static/index.html +++ b/static/index.html @@ -10,7 +10,7 @@ - + OwlBoard @@ -38,9 +38,11 @@ OwlBoard Logo
- -
- +
+ +
+ +


diff --git a/static/js/ldb.js b/static/js/board.js similarity index 100% rename from static/js/ldb.js rename to static/js/board.js diff --git a/static/js/main.js b/static/js/index.js similarity index 89% rename from static/js/main.js rename to static/js/index.js index 82eefaf..d4d8aec 100644 --- a/static/js/main.js +++ b/static/js/index.js @@ -12,5 +12,6 @@ async function sidebarClose() { async function gotoBoard(station){ console.log(`Finding ${station}`) + var url = `http://${window.location.host}/board.html/${station}`; window.location.assign(`board.html?stn=${station}`) } \ No newline at end of file