X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=xonstat%2Ftemplates%2Fmain_index.mako;h=7e7b0d86a5777462e78d56c2fcb493a529ab4ff4;hb=a9267693af6c042bee22cae3ccd1f0f2307b58d0;hp=c731a0eecdef44d7e7f8e52a2cc85fb7e3159400;hpb=678b131718d039ea912c8458a3db9264c8d9e883;p=xonotic%2Fxonstat.git diff --git a/xonstat/templates/main_index.mako b/xonstat/templates/main_index.mako index c731a0e..7e7b0d8 100644 --- a/xonstat/templates/main_index.mako +++ b/xonstat/templates/main_index.mako @@ -4,123 +4,79 @@ Leaderboard +<%block name="css"> + ${parent.css()} + + + <%block name="hero_unit"> -
- - #####

Tracking 12345 players, 12345 games (123 duels, 123 ctfs, 123 dms), 12345 servers, and 12345 maps since November 2011.

-

Tracking Xonotic statistics since October 2011.

-

Get the game »

-
+
+ + % 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 +
-
-
- ##### DUEL RANKS ##### -

Duel Ranks

- - - - - - - - - - <% i = 1 %> - % for (player_id, nick, elo) in duel_ranks: - - - % if player_id != '-': - - % else: - - % endif - % if elo != '-': - - % else: - - % endif - - <% i = i+1 %> - % endfor - -
#NickElo
${i}${nick|n}${nick|n}${round(elo, 3)}${elo}
-

More...

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

You don't seem to have any ranks yet.

+
+
-
- ##### CTF RANKS ##### -

CTF Ranks

- - - - - - - - - - <% i = 1 %> - % for (player_id, nick, elo) in ctf_ranks: - - - % if player_id != '-': - - % else: - - % endif - % if elo != '-': - - % else: - - % endif - - <% i = i+1 %> - % endfor - -
#NickElo
${i}${nick|n}${nick|n}${round(elo, 3)}${elo}
-

More...

-
+% 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 -
- ##### DM RANKS ##### -

DM Ranks

- - - - - - - - - - <% i = 1 %> - % for (player_id, nick, elo) in dm_ranks: +
#NickElo
+ + + + + + + + + <% i = 1 %> + % for r in rs: - % if player_id != '-': - - % else: - - % endif - % if elo != '-': - - % else: - - % endif + + <% i = i+1 %> - % endfor - -
#NickElo
${i}${nick|n}${nick|n}${round(elo, 3)}${elo}${r.nick_html_colors()|n}${round(r.elo, 3)}
-

More...

-
-
+ % endfor + + +

More...

+
+ % endif + + % endfor +
+% endif + +##### ACTIVE PLAYERS #####

Most Active Players

- +
@@ -134,7 +90,7 @@ Leaderboard % if player_id != '-': - + % else: % endif @@ -147,9 +103,11 @@ Leaderboard

*Most active stats are from the past 7 days

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

Most Active Servers

-
#
${i}${nick|n}${nick|n}${nick|n}
+
@@ -175,9 +133,11 @@ Leaderboard
#
+ +##### ACTIVE MAPS #####

Most Active Maps

- +
@@ -204,10 +164,13 @@ Leaderboard + +##### RECENT GAMES ##### +% if len(recent_games) > 0:

Recent Games

-
#
+
@@ -219,33 +182,24 @@ Leaderboard - % for (game, server, map, pgstat) in recent_games: - % if game != '-': + % for rg in recent_games: - - - - - - + + + + + + % else: - ${pgstat.nick_html_colors()|n} + ${rg.nick_html_colors|n} % endif - % else: - - - - - - - - - % endif % endfor
view${game.game_type_cd}${server.name}${map.name}${game.start_dt.strftime('%m/%d/%Y %H:%M')} - % if pgstat.player_id > 2: - ${pgstat.nick_html_colors()|n}view${rg.server_name}${rg.map_name}${rg.fuzzy_date} + % if rg.player_id > 2: + ${rg.nick_html_colors|n}
------
+

More...

+% endif