added default country

This commit is contained in:
2026-04-01 09:42:54 +02:00
parent 1d7f31eb96
commit 586ac4c5c2
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -150,9 +150,9 @@ def check_polish_wl(nip: str):
}
@app.get("/")
def index():
return render_template("company_data.html")
@app.get("/company_data/<country>")
def index(country):
return render_template("company_data.html", country=country)
@app.get("/api/company_lookup")