Fix small frontend page underline bug
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 13s

This commit is contained in:
2024-02-20 01:39:22 +01:00
parent 9b0379a889
commit b6f7cd85cb
2 changed files with 2 additions and 3 deletions

View File

@ -16,8 +16,7 @@ db.init_app(app)
# TODO
# General
# - Sanitize URLs
# - A lot of validation (esp. in the model), each input should be checked...
# - A lot of validation (esp. in the model), each input should be checked (e.g. DNF, excluded order)...
# - Show cards of previous race results, like with season guesses?
# - Make the season card grid left-aligned? So e.g. 2 cards are not spread over the whole screen with large gaps?

View File

@ -2,7 +2,7 @@
{% block title %}Formula 10 - Season{% endblock title %}
{% set active_page = "/season/" ~ (active_user.name if active_user is not none else "Everyone") %}
{% set active_page = "/season/" ~ (active_user.name_sanitized if active_user is not none else "Everyone") %}
{% block navbar_center %}
{% if model.all_users() | length > 1 %}