X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=xonstat%2Ftemplates%2Fmain_index.mako;h=7e7b0d86a5777462e78d56c2fcb493a529ab4ff4;hb=4489ed57dc1eb34146183f93ba763e133c466364;hp=bcd1aa9593716ae362fd3a02bd26a820b966e444;hpb=ab26088489d415518a1b3f46de65c706b2f42071;p=xonotic%2Fxonstat.git diff --git a/xonstat/templates/main_index.mako b/xonstat/templates/main_index.mako old mode 100755 new mode 100644 index bcd1aa9..7e7b0d8 --- a/xonstat/templates/main_index.mako +++ b/xonstat/templates/main_index.mako @@ -1,112 +1,205 @@ -<%inherit file="base.mako"/> - -<%block name="title"> -Main Page - ${parent.title()} - - -
- -##### TOP PLAYERS ##### - - - - - - - - - -% for (player_id, nick, score) in top_players: - - % if player_id != '-': - - % else: - - % endif - - - -% endfor -
Top Players
#NickScore
${player_id}${player_id}${nick}${score}
- -##### TOP SERVERS ##### - - - - - - - - - -% for (server_id, name, count) in top_servers: - - % if server_id != '-': - - % else: - - % endif - - - -% endfor -
Top Servers
#ServerGames
${server_id}${server_id}${name}${count}
- -##### TOP MAPS ##### - - - - - - - - - -% for (map_id, name, count) in top_maps: - - % if map_id != '-': - - % else: - - % endif - - - -% endfor -
Top Maps
#MapTimes Played
${map_id}${map_id}${name}${count}
-
- -
- -##### RECENT GAMES ##### - - - - - - - - - - - - % for (game, server, map) in recent_games: - % if game != '-': - - - - - - - - % else: - - - - - - - - % endif - % endfor - +<%inherit file="base.mako"/> + +<%block name="title"> +Leaderboard + + +<%block name="css"> + ${parent.css()} + + + +<%block name="hero_unit"> +
+ + % if summary_stats 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.

+ % 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 + +
Recent Games
Game #ServerMapTimeWinner
${game.game_id}${server.name}${map.name}${game.start_dt}${game.winner}
-----
+ + + + + + + + + <% i = 1 %> + % for r in rs: + + + + + + <% i = i+1 %> + % endfor + +
#NickElo
${i}${r.nick_html_colors()|n}${round(r.elo, 3)}
+

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}
+

*Most active stats are from the past 7 days

+
+ + +##### ACTIVE SERVERS ##### +
+

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}
+
+ + +##### ACTIVE MAPS ##### +
+

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

+ + + + + + + + + + + + + % for rg in recent_games: + + + + + + + + % else: + ${rg.nick_html_colors|n} + % endif + + % endfor + +
TypeServerMapTimeWinner
view${rg.server_name}${rg.map_name}${rg.fuzzy_date} + % if rg.player_id > 2: + ${rg.nick_html_colors|n}
+

More...

+
+
+% endif