Skip to content
Snippets Groups Projects
Commit 62f73286 authored by Jiří Setnička's avatar Jiří Setnička
Browse files

Drobečková navigace - podkola

parent 7006e1d9
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !38. Comments created here will be created in the context of that merge request.
......@@ -280,6 +280,10 @@ def contest_breadcrumbs(
round_id = None
if round:
round_id = round.round_id
if round.is_subround():
elements.append((url_for('org_round', id=round.parent_id), round.round_code()))
elements.append((url_for('org_round', id=round_id), f'Podkolo {round.name}'))
else:
elements.append((url_for('org_round', id=round_id), round.round_code()))
ct_id = None
if contest:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment