1 <%inherit file="base.mako"/>
9 <link href="/static/css/luma.css" rel="stylesheet">
12 <%block name="hero_unit">
13 <div class="text-center">
14 <img src="/static/css/img/xonotic-logo.png" />
15 % if stat_line is None:
16 <p class="statline">Tracking Xonotic statistics since October 2011.</p>
18 <p class="statline">Tracking ${stat_line|n} since October 2011.</p>
21 % if day_stat_line is not None:
22 <p class="statline">${day_stat_line|n} in the past 24 hours.</p>
30 <div class="small-12 large-12 columns">
31 <p class="text-center"><i class="icon-white icon-info-sign"> </i> You don't seem to have any ranks yet.</p>
37 % for rs in ranks[:4]:
39 <div class="small-12 large-3 columns">
40 % if rs[0].game_type_cd == 'duel':
41 <h5>Duel Ranks <a href="${request.route_url('rank_index', game_type_cd=rs[0].game_type_cd)}" title="See more ${rs[0].game_type_cd} rankings"><i class="fa fa-plus-circle"></i></a></h5>
42 % elif rs[0].game_type_cd == 'ctf':
43 <h5>CTF Ranks <a href="${request.route_url('rank_index', game_type_cd=rs[0].game_type_cd)}" title="See more ${rs[0].game_type_cd} rankings"><i class="fa fa-plus-circle"></i></a></h5>
44 % elif rs[0].game_type_cd == 'dm':
45 <h5>DM Ranks <a href="${request.route_url('rank_index', game_type_cd=rs[0].game_type_cd)}" title="See more ${rs[0].game_type_cd} rankings"><i class="fa fa-plus-circle"></i></a></h5>
46 % elif rs[0].game_type_cd == 'tdm':
47 <h5>TDM Ranks <a href="${request.route_url('rank_index', game_type_cd=rs[0].game_type_cd)}" title="See more ${rs[0].game_type_cd} rankings"><i class="fa fa-plus-circle"></i></a></h5>
50 <table class="table-hover table-condensed">
53 <th class="small-2">#</th>
54 <th class="small-7">Nick</th>
55 <th class="small-3">Elo</th>
63 <td class="no-stretch"><a href="${request.route_url('player_info', id=r.player_id)}" title="Go to the player info page for this player">${r.nick_html_colors()|n}</a></td>
64 <td>${int(round(r.elo))}</td>
78 ##### ACTIVE PLAYERS #####
80 <div class="small-12 large-4 columns">
81 <h5>Most Active Players <a href="${request.route_url('top_players_by_time', page=1)}" title="See more player activity"><i class="fa fa-plus-circle"></i></a></h5>
82 <table class="table table-hover table-condensed">
85 <th class="small-2">#</th>
86 <th class="small-7">Nick</th>
87 <th class="small-3">Time</th>
92 % for (player_id, nick, alivetime) in top_players:
95 % if player_id != '-':
96 <td class="no-stretch"><a href="${request.route_url('player_info', id=player_id)}" title="Go to the player info page for this player">${nick|n}</a></td>
98 <td class="no-stretch" style="max-width:150px;">${nick|n}</td>
100 <td>${alivetime}</td>
109 ##### ACTIVE SERVERS #####
110 <div class="small-12 large-4 columns">
111 <h5>Most Active Servers <a href="${request.route_url('top_servers_by_players', page=1)}" title="See more server activity"><i class="fa fa-plus-circle"></i></a></h5>
112 <table class="table table-hover table-condensed">
115 <th class="small-2">#</th>
116 <th class="small-7">Server</th>
117 <th class="small-3">Games</th>
122 % for (server_id, name, count) in top_servers:
125 % if server_id != '-':
126 <td class="no-stretch"><a href="${request.route_url('server_info', id=server_id)}" title="Go to the server info page for ${name}">${name}</a></td>
139 ##### ACTIVE MAPS #####
140 <div class="small-12 large-4 columns">
141 <h5>Most Active Maps <a href="${request.route_url('top_maps_by_times_played', page=1)}" title="See more map activity"><i class="fa fa-plus-circle"></i></a></h5>
142 <table class="table table-hover table-condensed">
145 <th class="small-2">#</th>
146 <th class="small-7">Map</th>
147 <th class="small-3">Games</th>
152 % for (map_id, name, count) in top_maps:
156 <td class="no-stretch"><a href="${request.route_url('map_info', id=map_id)}" title="Go to the map info page for ${name}">${name}</a></td>
169 <div class="small-12 columns">
170 <small>*Most active stats are from the past 7 days</small>
175 ##### RECENT GAMES #####
176 % if len(recent_games) > 0:
178 <div class="small-12 columns">
179 <h5>Recent Games <a href="${request.route_url('game_index')}"><i class="fa fa-plus-circle"></i></a></h5>
180 <table class="table table-hover table-condensed">
183 <th class="small-1 text-center"></th>
184 <th class="small-1">Type</th>
185 <th class="show-for-medium-up small-3">Server</th>
186 <th class="show-for-medium-up small-2">Map</th>
187 <th class="show-for-large-up small-2">Time</th>
188 <th class="small-3">Winner</th>
192 % for rg in recent_games:
194 <td class="text-center"><a class="button tiny" href="${request.route_url('game_info', id=rg.game_id)}" title="View detailed information about this game">view</a></td>
195 <td class="text-center"><span class="sprite sprite-${rg.game_type_cd}" alt="${rg.game_type_cd}" title="${rg.game_type_descr}"></span></td>
196 <td class="show-for-medium-up no-stretch"><a href="${request.route_url('server_info', id=rg.server_id)}" title="Go to the detail page for this server">${rg.server_name}</a></td>
197 <td class="show-for-medium-up"><a href="${request.route_url('map_info', id=rg.map_id)}" title="Go to the map detail page for this map">${rg.map_name}</a></td>
198 <td class="show-for-large-up"><span class="abstime" data-epoch="${rg.epoch}" title="${rg.start_dt.strftime('%a, %d %b %Y %H:%M:%S UTC')}">${rg.fuzzy_date}</span></td>
199 <td class="no-stretch">
200 % if rg.player_id > 2:
201 <a href="${request.route_url('player_info', id=rg.player_id)}" title="Go to the player info page for this player">${rg.nick_html_colors|n}</a></td>
203 ${rg.nick_html_colors|n}</td>