diff --git a/README.md b/README.md index 0af8478..b3f45de 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,14 @@ docker compose up ## Contibution Any help with this project would be greatly appreciated. Fixes or some features are welcome. -More information about the contributing to this project will appear there a little later. +VATSIM Fox is free software, open to suggestions and contributions. All the files are under the MIT License. ## Feature There is small TODO list I would like to make in this project: - [x] Create docker - [x] Deploy to webserver with domain +- [ ] Change viewer style to the map, where user could see his airports where he was as a pilot or an ATC. - [ ] More ATC information — add map with control area - [ ] More profile information — add some more info, not only date of registration. Maybe rating or something - [ ] Website redesign diff --git a/src/static/viewer.js b/src/static/viewer.js index 89ed904..019fda0 100644 --- a/src/static/viewer.js +++ b/src/static/viewer.js @@ -120,7 +120,7 @@ function showFlight(flight) { // Changing text in each class // FP before _ - means flightplan - $(".fp_is_filed").text(flight["not_filed"] ? "This flightplan was not filed" : ""); + $(".fp_is_filed").text(flight["not_filed"] ? "This flightplan wasn't used" : ""); $(".fp_callsign").text(flight["callsign"]); $(".fp_depa_city").text(airports[flight["dep"]]["city"]); $(".fp_arra_city").text(airports[flight["arr"]]["city"]);