Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions webapp/src/Service/ScoreboardService.php
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,7 @@ public function getGroupedAffiliations(Contest $contest): array
$affiliations[$teamaffil->getName()] = [
'id' => $teamaffil->getExternalid(),
'name' => $teamaffil->getName(),
'country' => $teamaffil->getCountry(),
];
}
}
Expand Down
3 changes: 3 additions & 0 deletions webapp/templates/partials/scoreboard.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@
<ul class="list-group list-group-flush">
{% for affiliation in affiliations %}
<li class="list-group-item">
{% if showFlags %}
{{ affiliation.country|countryFlag }}
{% endif %}
{% set affiliationLogo = affiliation.id | assetPath('affiliation') %}
{% if affiliationLogo %}
<img loading="lazy" class="affiliation-logo"
Expand Down
Loading