{% extends "base.html" %}
{% block title %}SITAC{% endblock %}
{% block styles %}
{% endblock %}
{% block body_class %}sitac-page{% endblock %}
{% block content %}
SITAC - Foothold
Zones
| Name |
Side |
Level |
Upgrades Used |
Active |
First Capture by Red |
{% for name, zone in sitac.zones.items() | sort %}
| {{ name }} |
{% if zone.side == 1 %}
Red
{% elif zone.side == 2 %}
Blue
{% else %}
Neutral
{% endif %}
|
{{ zone.level }} |
{{ zone.upgradesUsed }} |
{{ 'Yes' if zone.active else 'No' }} |
{{ 'Yes' if zone.firstCaptureByRed else 'No' }} |
{% endfor %}
Player Stats
| # |
Player |
Points |
Deaths |
Zone Captures |
Zone Upgrades |
Air |
Ground Units |
{% for player, stats in sitac.player_stats.items() | sort(attribute='1.points', reverse=True) %}
| {{ loop.index }} |
{{ player }} |
{{ stats.points | int }} |
{{ stats.deaths }} |
{{ stats.zone_capture }} |
{{ stats.zone_upgrade }} |
{{ stats.air }} |
{{ stats.ground_units }} |
{% endfor %}
{% endblock %}