WebApp Design modern

This commit is contained in:
hubobel 2026-06-20 17:09:32 +02:00
parent 49c9e36a0c
commit b5931509af
5 changed files with 580 additions and 157 deletions

2
app.py
View file

@ -178,7 +178,7 @@ def edit_category(category):
return render_template(
"edit_category.html",
category=category,
words=categories[category]
words=sorted(categories[category])
)
@app.route(
"/categories/add_word/<category>",