diff --git a/mo/email.py b/mo/email.py index 14660593e398ef3a92c71ac12569afb198995e89..51a3b8f541a605c0156676d2a666b74296a38d1c 100644 --- a/mo/email.py +++ b/mo/email.py @@ -74,7 +74,7 @@ def confirm_url(type: str, token: str) -> str: def contestant_list_url(contest: db.Contest, registered_only: bool) -> str: - url = config.WEB_ROOT + f'org/contest/c/{contest.contest_id}/ucastnici' + url = config.WEB_ROOT + f'org/contest/c/{contest.contest_id}/participants' if registered_only: url += '?participation_state=registered' return url