feat(obs): nommer chaque requete, et rendre les pages d erreur audibles
OBS-005. Un 500 dans errors.log et les six lignes de app.log qui y menent n etaient relies que par leur horodatage — ce qui n est pas une relation des que le serveur traite plus d une requete a la fois. Et un utilisateur qui dit « ca a plante quand j ai clique sur enregistrer » ne donnait a personne de quoi chercher. Chaque requete recoit un identifiant, porte par toutes les lignes de journal qu elle produit, renvoye en X-Request-Id, et affiche sur la page 500 comme reference a citer. Il est **genere**, jamais lu depuis un en-tete entrant. Accepter celui du client serait pratique pour tracer a travers nginx, et permettrait aussi a n importe qui d ecrire du texte arbitraire — retours a la ligne compris — dans le fichier de journal. C est ainsi qu un journal cesse d etre une preuve. Il n y a de toute facon aucun proxy de confiance tant qu OPS-002 est ouvert. Le test correspondant assure sur l alphabet plutot qu en envoyant un retour a la ligne : le client de test de Werkzeug refuse d emettre un tel en-tete, donc l attaque ne peut meme pas etre construite par la, ce qui ne prouverait rien sur l application. **Defaut trouve en chemin, et repare.** Les cinq gabarits d erreur remplissent le bloc `content`, qui n existait que dans la branche authentifiee de la mise en page. Un visiteur deconnecte tombant sur une erreur — donc typiquement sur la page de connexion — recevait le logo, le selecteur de langue, et **aucun message**. Le code de statut etait bon, les journaux etaient bons, la page etait vide. Le <title> disait quand meme « 404 », ce qui explique en grande partie que personne ne l ait vu. Le bloc est desormais rendu dans les deux branches via self.content(), Jinja refusant deux blocs de meme nom. Un seul cote du if s execute, donc jamais de double rendu — et c est assure, pas suppose. 550 tests.
This commit is contained in:
+29
-1
@@ -249,6 +249,27 @@ def create_app(config=None):
|
||||
# unconditionally so templates can carry nonce="" beforehand.
|
||||
g.csp_nonce = secrets.token_urlsafe(16)
|
||||
|
||||
@app.before_request
|
||||
def assign_request_id():
|
||||
"""Give this request a name, so its log lines can be found (OBS-005).
|
||||
|
||||
Every record emitted while handling it carries this id — see
|
||||
RequestIdFilter — which is what turns "an error happened around
|
||||
14:32" into the six lines that led to it. It goes back in
|
||||
X-Request-Id and onto the 500 page, so that a report of "it broke
|
||||
when I clicked save" is enough to find the trace.
|
||||
|
||||
Generated here, never taken from an inbound header: with no trusted
|
||||
proxy settled (OPS-002), an accepted header lets any caller write
|
||||
arbitrary text — newlines included — into the log file.
|
||||
"""
|
||||
g.request_id = secrets.token_hex(8)
|
||||
|
||||
@app.after_request
|
||||
def expose_request_id(response):
|
||||
response.headers['X-Request-Id'] = g.get('request_id', '-')
|
||||
return response
|
||||
|
||||
@app.url_defaults
|
||||
def version_static_urls(endpoint, values):
|
||||
"""Stamp every static URL with the file's modification time.
|
||||
@@ -533,6 +554,12 @@ def create_app(config=None):
|
||||
# Roll back any failed database session
|
||||
db.session.rollback()
|
||||
|
||||
# The id is the only thing that connects a user saying "it broke when
|
||||
# I clicked save" to the stack trace in errors.log. It identifies one
|
||||
# request and nothing else — no session, no account, nothing an
|
||||
# attacker can use — so showing it costs nothing (OBS-005).
|
||||
request_id = g.get('request_id', '-')
|
||||
|
||||
if request.path.startswith('/users/disponibilities') or request.path.startswith(
|
||||
'/users/api/'
|
||||
):
|
||||
@@ -540,9 +567,10 @@ def create_app(config=None):
|
||||
{
|
||||
'error': 'Internal server error',
|
||||
'message': 'An unexpected error occurred. Please try again later.',
|
||||
'request_id': request_id,
|
||||
}
|
||||
), 500
|
||||
return render_template('errors/500.html'), 500
|
||||
return render_template('errors/500.html', request_id=request_id), 500
|
||||
|
||||
@app.errorhandler(HTTPException)
|
||||
def handle_http_exception(error):
|
||||
|
||||
+44
-2
@@ -14,6 +14,37 @@ import os
|
||||
import re
|
||||
from logging.handlers import RotatingFileHandler
|
||||
|
||||
#: Value used when a record is emitted outside a request — startup, the
|
||||
#: Discord bot thread, the scheduler. Short and obviously not an id, so a
|
||||
#: grep for one never matches it by accident.
|
||||
NO_REQUEST = '-'
|
||||
|
||||
|
||||
class RequestIdFilter(logging.Filter):
|
||||
"""Stamp every record with the id of the request that produced it.
|
||||
|
||||
Without this, a 500 in errors.log and the six lines in app.log that led
|
||||
to it are related only by their timestamps, which is not a relation when
|
||||
the server is handling more than one request at a time (OBS-005).
|
||||
|
||||
The id is generated per request and never read from an inbound header.
|
||||
Accepting one would be convenient for tracing across nginx, and it would
|
||||
also let any caller write arbitrary text — newlines included — into the
|
||||
log file, which is how a log gets forged rather than read. There is no
|
||||
trusted proxy to take it from while OPS-002 is open.
|
||||
"""
|
||||
|
||||
def filter(self, record):
|
||||
record.request_id = NO_REQUEST
|
||||
try:
|
||||
from flask import g, has_request_context
|
||||
|
||||
if has_request_context():
|
||||
record.request_id = g.get('request_id', NO_REQUEST)
|
||||
except Exception: # noqa: BLE001 — logging must never be the thing that fails
|
||||
pass
|
||||
return True
|
||||
|
||||
|
||||
class SensitiveDataFilter(logging.Filter):
|
||||
"""Logging filter that redacts sensitive information from log messages.
|
||||
@@ -95,10 +126,17 @@ def configure_logging(app):
|
||||
|
||||
# Create the sensitive data filter
|
||||
sensitive_filter = SensitiveDataFilter()
|
||||
request_id_filter = RequestIdFilter()
|
||||
|
||||
# Formatter with timestamp, level, module, and message
|
||||
# Formatter with timestamp, level, module, request id, and message.
|
||||
#
|
||||
# request_id comes from RequestIdFilter, which is attached to every
|
||||
# handler below. A handler that formats with this string and does not
|
||||
# carry the filter raises on its first record — so if one is ever added,
|
||||
# add the filter with it.
|
||||
formatter = logging.Formatter(
|
||||
'[%(asctime)s] %(levelname)s [%(name)s:%(lineno)d] %(message)s', datefmt='%Y-%m-%d %H:%M:%S'
|
||||
'[%(asctime)s] %(levelname)s [%(name)s:%(lineno)d] [%(request_id)s] %(message)s',
|
||||
datefmt='%Y-%m-%d %H:%M:%S',
|
||||
)
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
@@ -112,6 +150,7 @@ def configure_logging(app):
|
||||
error_handler.setLevel(logging.ERROR)
|
||||
error_handler.setFormatter(formatter)
|
||||
error_handler.addFilter(sensitive_filter)
|
||||
error_handler.addFilter(request_id_filter)
|
||||
app.logger.addHandler(error_handler)
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
@@ -125,6 +164,7 @@ def configure_logging(app):
|
||||
auth_handler.setLevel(logging.INFO)
|
||||
auth_handler.setFormatter(formatter)
|
||||
auth_handler.addFilter(sensitive_filter)
|
||||
auth_handler.addFilter(request_id_filter)
|
||||
|
||||
# Create a named logger specifically for auth events
|
||||
auth_logger = logging.getLogger('team_tryouts.auth')
|
||||
@@ -143,6 +183,7 @@ def configure_logging(app):
|
||||
app_handler.setLevel(log_level)
|
||||
app_handler.setFormatter(formatter)
|
||||
app_handler.addFilter(sensitive_filter)
|
||||
app_handler.addFilter(request_id_filter)
|
||||
app.logger.addHandler(app_handler)
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
@@ -156,6 +197,7 @@ def configure_logging(app):
|
||||
console_handler.setLevel(logging.DEBUG if debug_mode else log_level)
|
||||
console_handler.setFormatter(formatter)
|
||||
console_handler.addFilter(sensitive_filter)
|
||||
console_handler.addFilter(request_id_filter)
|
||||
app.logger.addHandler(console_handler)
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
@@ -8,6 +8,12 @@
|
||||
</div>
|
||||
<h2>{{ _('500 — Internal Server Error') }}</h2>
|
||||
<p>{{ _('Something went wrong on our end. The error has been logged and will be investigated. Please try again later.') }}</p>
|
||||
{# The reference is what makes a report actionable: it names one request
|
||||
in errors.log. It identifies nothing else — no session, no account —
|
||||
so there is nothing to protect here (OBS-005). #}
|
||||
{% if request_id and request_id != '-' %}
|
||||
<p class="text-muted small">{{ _('Reference to quote if you report this:') }} <code>{{ request_id }}</code></p>
|
||||
{% endif %}
|
||||
<a href="{{ url_for('main.dashboard') if current_user.is_authenticated else url_for('auth.login') }}" class="btn btn-primary">
|
||||
<i class="fas fa-redo-alt"></i> {{ _('Try Again') }}
|
||||
</a>
|
||||
|
||||
@@ -201,6 +201,20 @@
|
||||
<div class="auth-language">
|
||||
{% include "layouts/_language_switcher.html" %}
|
||||
</div>
|
||||
{# The same `content` block as the signed-in branch, rendered
|
||||
here too — `self.content()` rather than a second
|
||||
`{% block %}`, which Jinja refuses.
|
||||
|
||||
The error pages (400, 403, 404, 429, 500) all fill `content`,
|
||||
and it existed only inside the `is_authenticated` branch: a
|
||||
signed-out visitor hitting any of them got the logo, the
|
||||
language switcher and no message whatsoever. The <title> still
|
||||
said "404", which is most of why nobody noticed.
|
||||
|
||||
Only one branch of the `if` runs, so this never double-renders.
|
||||
Sign-in pages fill `auth_content` instead and leave this
|
||||
empty. #}
|
||||
{{ self.content() }}
|
||||
{% block auth_content %}{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Binary file not shown.
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: team-tryouts VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2026-08-11 13:32-0400\n"
|
||||
"POT-Creation-Date: 2026-08-11 15:25-0400\n"
|
||||
"PO-Revision-Date: 2026-08-07 20:22-0400\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: en\n"
|
||||
@@ -20,7 +20,7 @@ msgstr ""
|
||||
"Generated-By: Babel 2.18.0\n"
|
||||
|
||||
#: app/forms.py:37 app/routes/auth.py:224 app/routes/auth.py:374
|
||||
#: app/routes/users/contracts.py:95
|
||||
#: app/routes/users/contracts.py:96
|
||||
#, python-format
|
||||
msgid "%(field)s: %(msg)s"
|
||||
msgstr "%(field)s: %(msg)s"
|
||||
@@ -633,11 +633,11 @@ msgstr "User %(full_name)s created as %(role)s!"
|
||||
msgid "Only coaches can manage availability."
|
||||
msgstr "Only coaches can manage availability."
|
||||
|
||||
#: app/routes/users/contracts.py:83
|
||||
#: app/routes/users/contracts.py:84
|
||||
msgid "Only presidents, managers, and coaches can upload contracts."
|
||||
msgstr "Only presidents, managers, and coaches can upload contracts."
|
||||
|
||||
#: app/routes/users/contracts.py:102
|
||||
#: app/routes/users/contracts.py:103
|
||||
msgid "You do not have permission to upload a contract for this player."
|
||||
msgstr "You do not have permission to upload a contract for this player."
|
||||
|
||||
@@ -650,15 +650,15 @@ msgstr "Contract uploaded successfully for %(username)s!"
|
||||
msgid "Only the player can upload their signed contract."
|
||||
msgstr "Only the player can upload their signed contract."
|
||||
|
||||
#: app/routes/users/contracts.py:176
|
||||
#: app/routes/users/contracts.py:175
|
||||
msgid "Signed contract uploaded successfully!"
|
||||
msgstr "Signed contract uploaded successfully!"
|
||||
|
||||
#: app/routes/users/contracts.py:186 app/routes/users/contracts.py:199
|
||||
#: app/routes/users/contracts.py:185 app/routes/users/contracts.py:200
|
||||
msgid "You do not have permission to download this contract."
|
||||
msgstr "You do not have permission to download this contract."
|
||||
|
||||
#: app/routes/users/contracts.py:202
|
||||
#: app/routes/users/contracts.py:203
|
||||
msgid "No signed contract available."
|
||||
msgstr "No signed contract available."
|
||||
|
||||
@@ -881,7 +881,11 @@ msgstr ""
|
||||
"Something went wrong on our end. The error has been logged and will be "
|
||||
"investigated. Please try again later."
|
||||
|
||||
#: app/templates/errors/500.html:12
|
||||
#: app/templates/errors/500.html:15
|
||||
msgid "Reference to quote if you report this:"
|
||||
msgstr "Reference to quote if you report this:"
|
||||
|
||||
#: app/templates/errors/500.html:18
|
||||
msgid "Try Again"
|
||||
msgstr "Try Again"
|
||||
|
||||
@@ -889,78 +893,78 @@ msgstr "Try Again"
|
||||
msgid "Language"
|
||||
msgstr "Language"
|
||||
|
||||
#: app/templates/layouts/base.html:33 app/templates/layouts/base.html:139
|
||||
#: app/templates/layouts/base.html:48 app/templates/layouts/base.html:154
|
||||
#: app/templates/pages/dashboard.html:2 app/templates/pages/dashboard.html:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Dashboard"
|
||||
|
||||
#: app/templates/layouts/base.html:39 app/templates/pages/tryouts.html:2
|
||||
#: app/templates/layouts/base.html:54 app/templates/pages/tryouts.html:2
|
||||
#: app/templates/pages/tryouts.html:3
|
||||
msgid "Tryouts"
|
||||
msgstr "Tryouts"
|
||||
|
||||
#: app/templates/layouts/base.html:45 app/templates/pages/calendar.html:2
|
||||
#: app/templates/layouts/base.html:60 app/templates/pages/calendar.html:2
|
||||
#: app/templates/pages/calendar.html:3
|
||||
msgid "Calendar"
|
||||
msgstr "Calendar"
|
||||
|
||||
#: app/templates/layouts/base.html:52 app/templates/pages/dashboard.html:43
|
||||
#: app/templates/layouts/base.html:67 app/templates/pages/dashboard.html:43
|
||||
#: app/templates/pages/evaluations.html:2
|
||||
#: app/templates/pages/evaluations.html:3
|
||||
msgid "Evaluations"
|
||||
msgstr "Evaluations"
|
||||
|
||||
#: app/templates/layouts/base.html:60 app/templates/pages/my_teams.html:2
|
||||
#: app/templates/layouts/base.html:75 app/templates/pages/my_teams.html:2
|
||||
#: app/templates/pages/my_teams.html:3
|
||||
msgid "My Team(s)"
|
||||
msgstr "My Team(s)"
|
||||
|
||||
#: app/templates/layouts/base.html:67
|
||||
#: app/templates/layouts/base.html:82
|
||||
msgid "Manage Teams"
|
||||
msgstr "Manage Teams"
|
||||
|
||||
#: app/templates/layouts/base.html:75 app/templates/pages/users.html:2
|
||||
#: app/templates/layouts/base.html:90 app/templates/pages/users.html:2
|
||||
#: app/templates/pages/users.html:3
|
||||
msgid "Manage Users"
|
||||
msgstr "Manage Users"
|
||||
|
||||
#: app/templates/layouts/base.html:83
|
||||
#: app/templates/layouts/base.html:98
|
||||
#: app/templates/pages/player_personal_notes.html:2
|
||||
#: app/templates/pages/player_personal_notes.html:3
|
||||
msgid "My Notes"
|
||||
msgstr "My Notes"
|
||||
|
||||
#: app/templates/layouts/base.html:91
|
||||
#: app/templates/layouts/base.html:106
|
||||
msgid "Availability"
|
||||
msgstr "Availability"
|
||||
|
||||
#: app/templates/layouts/base.html:97
|
||||
#: app/templates/layouts/base.html:112
|
||||
msgid "Notes & One on One"
|
||||
msgstr "Notes & One on One"
|
||||
|
||||
#: app/templates/layouts/base.html:104 app/templates/pages/contracts.html:2
|
||||
#: app/templates/layouts/base.html:119 app/templates/pages/contracts.html:2
|
||||
#: app/templates/pages/contracts.html:3 app/templates/pages/profile.html:9
|
||||
msgid "Contracts"
|
||||
msgstr "Contracts"
|
||||
|
||||
#: app/templates/layouts/base.html:111 app/templates/pages/profile.html:2
|
||||
#: app/templates/layouts/base.html:126 app/templates/pages/profile.html:2
|
||||
#: app/templates/pages/profile.html:3
|
||||
msgid "My Profile"
|
||||
msgstr "My Profile"
|
||||
|
||||
#: app/templates/layouts/base.html:122
|
||||
#: app/templates/layouts/base.html:137
|
||||
msgid "Logout"
|
||||
msgstr "Logout"
|
||||
|
||||
#: app/templates/layouts/base.html:143
|
||||
#: app/templates/layouts/base.html:158
|
||||
msgid "Toggle dark mode"
|
||||
msgstr "Toggle dark mode"
|
||||
|
||||
#: app/templates/layouts/base.html:155 app/templates/layouts/base.html:174
|
||||
#: app/templates/layouts/base.html:170 app/templates/layouts/base.html:189
|
||||
msgid "Dismiss"
|
||||
msgstr "Dismiss"
|
||||
|
||||
#: app/templates/layouts/base.html:184
|
||||
#: app/templates/layouts/base.html:199
|
||||
msgid "Team Tryout Management System"
|
||||
msgstr "Team Tryout Management System"
|
||||
|
||||
|
||||
Binary file not shown.
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: team-tryouts VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2026-08-11 13:32-0400\n"
|
||||
"POT-Creation-Date: 2026-08-11 15:25-0400\n"
|
||||
"PO-Revision-Date: 2026-08-07 20:22-0400\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: fr\n"
|
||||
@@ -20,7 +20,7 @@ msgstr ""
|
||||
"Generated-By: Babel 2.18.0\n"
|
||||
|
||||
#: app/forms.py:37 app/routes/auth.py:224 app/routes/auth.py:374
|
||||
#: app/routes/users/contracts.py:95
|
||||
#: app/routes/users/contracts.py:96
|
||||
#, python-format
|
||||
msgid "%(field)s: %(msg)s"
|
||||
msgstr "%(field)s : %(msg)s"
|
||||
@@ -639,11 +639,11 @@ msgstr "Utilisateur %(full_name)s créé avec le rôle %(role)s."
|
||||
msgid "Only coaches can manage availability."
|
||||
msgstr "Seuls les coachs peuvent gérer leurs disponibilités."
|
||||
|
||||
#: app/routes/users/contracts.py:83
|
||||
#: app/routes/users/contracts.py:84
|
||||
msgid "Only presidents, managers, and coaches can upload contracts."
|
||||
msgstr "Seuls les présidents, gérants et coachs peuvent téléverser un contrat."
|
||||
|
||||
#: app/routes/users/contracts.py:102
|
||||
#: app/routes/users/contracts.py:103
|
||||
msgid "You do not have permission to upload a contract for this player."
|
||||
msgstr "Vous n’avez pas les droits pour téléverser un contrat pour ce joueur."
|
||||
|
||||
@@ -656,15 +656,15 @@ msgstr "Contrat téléversé pour %(username)s."
|
||||
msgid "Only the player can upload their signed contract."
|
||||
msgstr "Seul le joueur peut téléverser son contrat signé."
|
||||
|
||||
#: app/routes/users/contracts.py:176
|
||||
#: app/routes/users/contracts.py:175
|
||||
msgid "Signed contract uploaded successfully!"
|
||||
msgstr "Contrat signé téléversé."
|
||||
|
||||
#: app/routes/users/contracts.py:186 app/routes/users/contracts.py:199
|
||||
#: app/routes/users/contracts.py:185 app/routes/users/contracts.py:200
|
||||
msgid "You do not have permission to download this contract."
|
||||
msgstr "Vous n’avez pas les droits pour télécharger ce contrat."
|
||||
|
||||
#: app/routes/users/contracts.py:202
|
||||
#: app/routes/users/contracts.py:203
|
||||
msgid "No signed contract available."
|
||||
msgstr "Aucun contrat signé disponible."
|
||||
|
||||
@@ -887,7 +887,11 @@ msgstr ""
|
||||
"Une erreur est survenue de notre côté. Elle a été journalisée et sera "
|
||||
"examinée. Veuillez réessayer dans un instant."
|
||||
|
||||
#: app/templates/errors/500.html:12
|
||||
#: app/templates/errors/500.html:15
|
||||
msgid "Reference to quote if you report this:"
|
||||
msgstr "Référence à indiquer si vous signalez ce problème :"
|
||||
|
||||
#: app/templates/errors/500.html:18
|
||||
msgid "Try Again"
|
||||
msgstr "Réessayer"
|
||||
|
||||
@@ -895,78 +899,78 @@ msgstr "Réessayer"
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
#: app/templates/layouts/base.html:33 app/templates/layouts/base.html:139
|
||||
#: app/templates/layouts/base.html:48 app/templates/layouts/base.html:154
|
||||
#: app/templates/pages/dashboard.html:2 app/templates/pages/dashboard.html:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Tableau de bord"
|
||||
|
||||
#: app/templates/layouts/base.html:39 app/templates/pages/tryouts.html:2
|
||||
#: app/templates/layouts/base.html:54 app/templates/pages/tryouts.html:2
|
||||
#: app/templates/pages/tryouts.html:3
|
||||
msgid "Tryouts"
|
||||
msgstr "Sélections"
|
||||
|
||||
#: app/templates/layouts/base.html:45 app/templates/pages/calendar.html:2
|
||||
#: app/templates/layouts/base.html:60 app/templates/pages/calendar.html:2
|
||||
#: app/templates/pages/calendar.html:3
|
||||
msgid "Calendar"
|
||||
msgstr "Calendrier"
|
||||
|
||||
#: app/templates/layouts/base.html:52 app/templates/pages/dashboard.html:43
|
||||
#: app/templates/layouts/base.html:67 app/templates/pages/dashboard.html:43
|
||||
#: app/templates/pages/evaluations.html:2
|
||||
#: app/templates/pages/evaluations.html:3
|
||||
msgid "Evaluations"
|
||||
msgstr "Évaluations"
|
||||
|
||||
#: app/templates/layouts/base.html:60 app/templates/pages/my_teams.html:2
|
||||
#: app/templates/layouts/base.html:75 app/templates/pages/my_teams.html:2
|
||||
#: app/templates/pages/my_teams.html:3
|
||||
msgid "My Team(s)"
|
||||
msgstr "Mon ou mes équipes"
|
||||
|
||||
#: app/templates/layouts/base.html:67
|
||||
#: app/templates/layouts/base.html:82
|
||||
msgid "Manage Teams"
|
||||
msgstr "Gestion des équipes"
|
||||
|
||||
#: app/templates/layouts/base.html:75 app/templates/pages/users.html:2
|
||||
#: app/templates/layouts/base.html:90 app/templates/pages/users.html:2
|
||||
#: app/templates/pages/users.html:3
|
||||
msgid "Manage Users"
|
||||
msgstr "Gestion des utilisateurs"
|
||||
|
||||
#: app/templates/layouts/base.html:83
|
||||
#: app/templates/layouts/base.html:98
|
||||
#: app/templates/pages/player_personal_notes.html:2
|
||||
#: app/templates/pages/player_personal_notes.html:3
|
||||
msgid "My Notes"
|
||||
msgstr "Mes notes"
|
||||
|
||||
#: app/templates/layouts/base.html:91
|
||||
#: app/templates/layouts/base.html:106
|
||||
msgid "Availability"
|
||||
msgstr "Disponibilités"
|
||||
|
||||
#: app/templates/layouts/base.html:97
|
||||
#: app/templates/layouts/base.html:112
|
||||
msgid "Notes & One on One"
|
||||
msgstr "Notes et rencontres individuelles"
|
||||
|
||||
#: app/templates/layouts/base.html:104 app/templates/pages/contracts.html:2
|
||||
#: app/templates/layouts/base.html:119 app/templates/pages/contracts.html:2
|
||||
#: app/templates/pages/contracts.html:3 app/templates/pages/profile.html:9
|
||||
msgid "Contracts"
|
||||
msgstr "Contrats"
|
||||
|
||||
#: app/templates/layouts/base.html:111 app/templates/pages/profile.html:2
|
||||
#: app/templates/layouts/base.html:126 app/templates/pages/profile.html:2
|
||||
#: app/templates/pages/profile.html:3
|
||||
msgid "My Profile"
|
||||
msgstr "Mon profil"
|
||||
|
||||
#: app/templates/layouts/base.html:122
|
||||
#: app/templates/layouts/base.html:137
|
||||
msgid "Logout"
|
||||
msgstr "Déconnexion"
|
||||
|
||||
#: app/templates/layouts/base.html:143
|
||||
#: app/templates/layouts/base.html:158
|
||||
msgid "Toggle dark mode"
|
||||
msgstr "Basculer le mode sombre"
|
||||
|
||||
#: app/templates/layouts/base.html:155 app/templates/layouts/base.html:174
|
||||
#: app/templates/layouts/base.html:170 app/templates/layouts/base.html:189
|
||||
msgid "Dismiss"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: app/templates/layouts/base.html:184
|
||||
#: app/templates/layouts/base.html:199
|
||||
msgid "Team Tryout Management System"
|
||||
msgstr "Système de gestion des sélections d’équipe"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user