diff --git a/bullet/bullet_admin/templates/bullet_admin/results/announce.html b/bullet/bullet_admin/templates/bullet_admin/results/announce.html index e94e0b36..c95438f8 100644 --- a/bullet/bullet_admin/templates/bullet_admin/results/announce.html +++ b/bullet/bullet_admin/templates/bullet_admin/results/announce.html @@ -1,53 +1,57 @@ {% extends "web/root_base.html" %} {% load results %} + {% block title %} - Results announcement + Results announcement {% endblock title %} {% block root_content %} -
|
- {{ forloop.counter0|add:start_index }}.
-
-
- {% if row.team.school %}
-
-
- {{ row.team.school.name }}
- {% if row.team.in_school_symbol %}
- {{ row.team.in_school_symbol }}
- {% endif %}
-
- {{ row.team.school.address }}
- {% else %}
- {{ row.team.name }}
- {% endif %}
- |
-
-
- {% if not hide_squares %}
- {% squares row problem_count team_problem_count first_problem %}
- {% endif %}
-
- {% if not hide_contestants %}
- {{ row.solved_count }}
- {{ row.team.contestants.all|join:", " }}
- {% endif %}
- |
-
- |||
| {% translate "(No team has solved any problem yet)" %} | -||||
|
+
+
+
+ {% full_team_name row.team flag=True %}
+
+ {% if not hide_squares %}
+ {{ forloop.counter0|add:start_index }}.
+ {{ row.solved_count }}
+
+ {% squares row problem_count team_problem_count first_problem %}
+
+ {% endif %}
+
+ {% if not hide_contestants %}
+ {{ row.team.contestants.all|join:", " }}
+ {% endif %}
+ |
+
+ ||
| + {% translate "(No team has solved any problem yet)" %} + | +||