{% extends "layout.html" %} {% block body %}
Currently {{ len(players) }} players are playing on {{ len(servers) }} servers. {% if cup.server_browser.last_sync %} This list was last synced on {{ cup.server_browser.last_sync.strftime('%d %B %Y at %H:%M UTC') }}. {% else %} Synchronization with main server in progress. Reload the page in a minute or two, to see the server list. {% endif %}
{{ self.order_link('name', 'Name') }} | {{ self.order_link('map', 'Map') }} | {{ self.order_link('gametype', 'Gametype') }} | {{ self.order_link('players', 'Players') }} | {{ self.order_link('progression', 'Progression') }} |
---|---|---|---|---|
{{ server.name }} | {{ server.map }} | {{ server.gametype }} | {{ server.player_count }} / {{ server.max_players }} | {{ '%d%%' % server.progression if server.progression >= 0 else '?' }} |
The following map represents the users playing currently. The bigger their name the higher their score in the current game. Clicking on the name takes you to the detail page of the server for some more information.
Find a user by username. The result page contains a link you can bookmark to find your buddy easily. Because currently there is no central user database users can appear on multiple servers for too generic usernames (like the default "nameless tee" user).
{% endblock %}