{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Online' %} / {{ block.super }}{% endblock title %} {% block head %} {% endblock head %} {% block content %}
{% trans 'Pilots on the server' %}: {{ total_players }}
{{ COAL_1_NAME }}: {{ total_coal_1 }}
{% for op in players_coal_1 %}
{{ op.nickname }}
{% endfor %}
{{ COAL_2_NAME }}: {{ total_coal_2 }}
{% for op in players_coal_2 %}
{{ op.nickname }}
{% endfor %}
{% endblock content %}