]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/templates/rank_index.mako
Make the ranks page mobile-friendly.
[xonotic/xonstat.git] / xonstat / templates / rank_index.mako
1 <%inherit file="base.mako"/>
2 <%namespace file="navlinks.mako" import="navlinks" />
3
4 <%block name="title">
5   % if game_type_cd == 'dm':
6     Deathmatch Rank Index
7   % elif game_type_cd == 'duel':
8     Duel Rank Index
9   % elif game_type_cd == 'tdm':
10     Team Deathmatch Rank Index
11   % elif game_type_cd == 'ctf':
12     Capture The Flag Rank Index
13   % endif
14 </%block>
15
16 <div class="row">
17   <div class="small-12 large-6 large-offset-3 columns">
18     % if not ranks:
19       <h2>Sorry, no ranks yet. Get some buddies together and start playing!</h2>
20
21     % else:
22       <table class="table table-hover table-condensed" border="1">
23         <tr>
24           <th class="small-2">Rank</th>
25           <th class="small-8">Nick</th>
26           <th class="small-2">Elo</th>
27         </tr>
28         <% i = 1 %>
29         % for rank in ranks:
30         <tr>
31           <td>${rank.rank}</td>
32           <td class="no-stretch"><a href="${request.route_url("player_info", id=rank.player_id)}" title="Go to this player's info page">${rank.nick_html_colors()|n}</a></th>
33           <td>${int(round(rank.elo))}</th>
34         </tr>
35         <% i += 1 %>
36         % endfor
37       </table>
38     % endif
39   </div>
40 </div>
41
42 <div class="row">
43   <div class="small-12 large-6 large-offset-3 columns">
44     <!-- navigation links -->
45     ${navlinks("rank_index", ranks.page, ranks.last_page, game_type_cd=game_type_cd)}
46   </div>
47 </div>