X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonstat.git;a=blobdiff_plain;f=xonstat%2Ftemplates%2Fmain_index.mako;h=fea048e70a0da5813d7ca31b4bc7ccc5d3873afd;hp=91640ecaa23bd0fae9cc1adbcdfe48a0d064d034;hb=HEAD;hpb=947bcbda4e4e8fb457d5d365bd0faa3691630250 diff --git a/xonstat/templates/main_index.mako b/xonstat/templates/main_index.mako index 91640ec..fea048e 100644 --- a/xonstat/templates/main_index.mako +++ b/xonstat/templates/main_index.mako @@ -1,186 +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.

- % else: -

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

- % endif -
+
+ + % if stat_line is None: +

Tracking Xonotic statistics since October 2011.

+ % else: +

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 +
-% if len(ranks) < 3: -
-
-

You don't seem to have any ranks yet.

-
-
-% else: + +##### ACTIVE PLAYERS #####
-% for rs in ranks[:3]: - % if len(rs) > 0: -
+
+
Most Active Players
+ + + + + + + + + + % for tp in top_players: + + + + + + % endfor + +
#NickTime
${tp.sort_order}${tp.nick_html_colors()|n}${tp.alivetime}
+
- % 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

- % endif - +##### ACTIVE SERVERS ##### +
+
Most Active Servers
+
- - - + + + - <% i = 1 %> - % for r in rs: + % for ts in top_servers: - - - + + + - <% i = i+1 %> % endfor
#NickElo#ServerTime
${i}${r.nick_html_colors()|n}${round(r.elo, 3)}${ts.sort_order}${ts.server_name}${ts.play_time_str(max_segments=2)}
-

More...

-
- % endif - -% endfor -
-% endif + -
-
-

Most Active Players

- +##### ACTIVE MAPS ##### +
+
Most Active Maps
+
- - - + + + - <% i = 1 %> - % for (player_id, nick, alivetime) in top_players: + % for tm in top_maps: - - % if player_id != '-': - - % else: - - % endif - + + + - <% i = i+1 %> % endfor
#NickPlay Time#MapGames
${i}${nick|n}${nick|n}${alivetime}${tm.sort_order}${tm.map_name}${tm.games}
-

*Most active stats are from the past 7 days

-
+
+ -
-

Most Active Servers

- - - - - - - - - - <% i = 1 %> - % for (server_id, name, count) in top_servers: - - - % if server_id != '-': - - % else: - - % endif - - - <% i = i+1 %> - % endfor - -
#ServerGames
${i}${name}${name}${count}
-
+
+
+ *Most active stats are from the past 7 days +
+
-
-

Most Active Maps

- - - - - - - - - - <% i = 1 %> - % for (map_id, name, count) in top_maps: - - - % if map_id != '-': - - % else: - - % endif - - - <% i = i+1 %> - % endfor - -
#MapGames
${i}${name}${name}${count}
-
- +##### RECENT GAMES ##### % if len(recent_games) > 0:
-
-

Recent Games

- +
+
Recent Games
+
- - - - - - + + + + + + % for rg in recent_games: - - - - - - - + + + + + % else: @@ -190,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