BUTCA Battleground
{% if not game_finished %}
Round {{ current_round }} of {{ rounds }}
{% endif %}
Score:
Red Team: {{ red_team_score }}
Blue Team: {{ blue_team_score }}
{% if notification %}
{{ notification.split(':')[1] }}
{% endif %}
{% if game_finished %}
Game finished
{% if red_team_score > blue_team_score %}
Red team wins!
{% elif red_team_score == blue_team_score %}
It's a draw!
{% else %}
Blue team wins!
{% endif %}
{% endif %}
{% if not game_finished %}
Running Containers:
{% for k, v in status.items() %}
-
{{ k }} - {{ ips[k] }} -
{% if v %}
Healthy
{% else %}
Not Healthy - losing points
{% endif %}
{% endfor %}
Flags pwned this round:
{% for k,v in flags.items() %}
-
{{ k }}
{% endfor %}
{% endif %}