X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=xonstat%2Ftemplates%2Fmain_index.mako;h=fea048e70a0da5813d7ca31b4bc7ccc5d3873afd;hb=13554fa40f2aa83e30cf8a7cecd93a6ab6102b6f;hp=983f2eebb7888ba7a82f10c06886e1ccb3bfc4f1;hpb=75e7a7632daf429eb04b102c2710967553dd6ad1;p=xonotic%2Fxonstat.git diff --git a/xonstat/templates/main_index.mako b/xonstat/templates/main_index.mako index 983f2ee..fea048e 100644 --- a/xonstat/templates/main_index.mako +++ b/xonstat/templates/main_index.mako @@ -1,197 +1,130 @@ <%inherit file="base.mako"/> <%block name="title"> -Leaderboard - - -<%block name="css"> - ${parent.css()} - + Leaderboard <%block name="hero_unit">
- - % if summary_stats is None: -

Tracking Xonotic statistics since October 2011.

+ + % if stat_line is None: +

Tracking Xonotic statistics since October 2011.

% else: -

Tracking ${'{:2,d}'.format(summary_stats.total_players)} players, ${'{:2,d}'.format(summary_stats.total_games)} games (${'{:2,d}'.format(summary_stats.duel_games)} duel; ${'{:2,d}'.format(summary_stats.ctf_games)} ctf; ${'{:2,d}'.format(summary_stats.dm_games)} dm) and ${'{:2,d}'.format(summary_stats.total_servers)} servers since October 2011.

+

Tracking ${stat_line|n} since October 2011.

+ % endif + + % if day_stat_line is not None: +

${day_stat_line|n} in the past 24 hours.

% endif
-##### RANKS ##### -% if len(ranks) < 4: -
-
-

You don't seem to have any ranks yet.

-
-
- -% else: -
- % for rs in ranks[:4]: - % if len(rs) > 0: -
- % if rs[0].game_type_cd == 'duel': -

Duel Ranks

- % elif rs[0].game_type_cd == 'ctf': -

CTF Ranks

- % elif rs[0].game_type_cd == 'dm': -

DM Ranks

- % elif rs[0].game_type_cd == 'tdm': -

TDM Ranks

- % endif +##### ACTIVE PLAYERS ##### +
+
+
Most Active Players
- - - + + + - <% i = 1 %> - % for r in rs: - - - - - - <% i = i+1 %> + % for tp in top_players: + + + + + % endfor
#NickElo#NickTime
${i}${r.nick_html_colors()|n}${int(round(r.elo))}
${tp.sort_order}${tp.nick_html_colors()|n}${tp.alivetime}
-

More...

-
- % endif - - % endfor -
-% endif - - -##### ACTIVE PLAYERS ##### -
-
-

Most Active Players

- - - - - - - - - - <% i = 1 %> - % for (player_id, nick, alivetime) in top_players: - - - % if player_id != '-': - - % else: - - % endif - - - <% i = i+1 %> - % endfor - -
#NickPlay Time
${i}${nick|n}${nick|n}${alivetime}
-
+
##### ACTIVE SERVERS ##### -
-

Most Active Servers

+
+
Most Active Servers
- - - + + + - <% i = 1 %> - % for (server_id, name, count) in top_servers: + % for ts in top_servers: - - % if server_id != '-': - - % else: - - % endif - + + + - <% i = i+1 %> % endfor
#ServerGames#ServerTime
${i}${name}${name}${count}${ts.sort_order}${ts.server_name}${ts.play_time_str(max_segments=2)}
-
+
##### ACTIVE MAPS ##### -
-

Most Active Maps

+
+
Most Active Maps
- - - + + + - <% i = 1 %> - % for (map_id, name, count) in top_maps: + % for tm in top_maps: - - % if map_id != '-': - - % else: - - % endif - + + + - <% i = i+1 %> % endfor
#MapGames#MapGames
${i}${name}${name}${count}${tm.sort_order}${tm.map_name}${tm.games}
-
-
- -

*Most active stats are from the past 7 days

+
+
+ +
+
+ *Most active stats are from the past 7 days +
##### RECENT GAMES ##### % if len(recent_games) > 0:
-
-

Recent Games

+
+
Recent Games
- - - - - - + + + + + + % for rg in recent_games: - - - - - - + + + + + % else: @@ -201,7 +134,6 @@ Leaderboard % endfor
TypeServerMapTimeWinnerTypeServerMapTimeWinner
view${rg.server_name}${rg.map_name}${rg.fuzzy_date} + view${rg.server_name}${rg.map_name}${rg.fuzzy_date} % if rg.player_id > 2: ${rg.nick_html_colors|n}
-

More...

-
-
+
+ % endif