Fix small frontend page underline bug
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 13s
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 13s
This commit is contained in:
@ -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?
|
||||
|
@ -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 %}
|
||||
|
Reference in New Issue
Block a user