@@ -19,13 +19,23 @@ <h3 class="d-inline-block mx-1">
19
19
20
20
{% if team.country %}
21
21
< h3 class ="d-inline-block mx-1 ">
22
- < span class ="badge bg-primary rounded-pill ">
23
- < i class ="flag-{{ team.country.lower() }} "> </ i >
24
- {{ lookup_country_code(team.country) }}
25
- </ span >
22
+ < span class ="badge bg-primary rounded-pill ">
23
+ < i class ="flag-{{ team.country.lower() }} "> </ i >
24
+ {{ lookup_country_code(team.country) }}
25
+ </ span >
26
26
</ h3 >
27
27
{% endif %}
28
28
29
+ {% if team.bracket_id %}
30
+ < div class ="pt-2 ">
31
+ < h2 >
32
+ < span class ="badge text-bg-light ">
33
+ {{ team.bracket.name }}
34
+ </ span >
35
+ </ h2 >
36
+ </ div >
37
+ {% endif %}
38
+
29
39
< div class ="pt-2 ">
30
40
{% for field in team.fields %}
31
41
< h3 class ="d-block ">
@@ -51,7 +61,7 @@ <h3 class="d-block">
51
61
52
62
< h2 id ="team-place " class ="text-center ">
53
63
{# This intentionally hides the team's place when scores are hidden because this can be
54
- their internal profile and we don't want to leak their place in the CTF. #}
64
+ their internal profile and we don't want to leak their place in the CTF. #}
55
65
56
66
{# Public page hiding is done at the route level #}
57
67
{% if scores_visible() %}
@@ -93,6 +103,12 @@ <h3>{% trans %}Members{% endtrans %}</h3>
93
103
< a href ="{{ url_for('users.public', user_id=member.id) }} ">
94
104
{{ member.name }}
95
105
</ a >
106
+ {% if member.bracket_id %}
107
+ < span class ="badge bg-secondary ms-2 "> {{ member.bracket.name }}</ span >
108
+ {% endif %}
109
+ {% if team.captain_id == member.id %}
110
+ < span class ="badge bg-primary ms-2 "> {% trans %}Captain{% endtrans %}</ span >
111
+ {% endif %}
96
112
</ td >
97
113
< td > {{ member.score }}</ td >
98
114
</ tr >
0 commit comments