1 <%inherit file="base.mako"/>
2 <%namespace file="navlinks.mako" import="navlinks" />
5 ${game_type.descr} Rank Index
9 <div class="small-12 large-6 large-offset-3 columns">
11 <h2>Sorry, no ranks yet. Get some buddies together and start playing!</h2>
14 <table class="table table-hover table-condensed" border="1">
16 <th class="small-2">Rank</th>
17 <th class="small-8">Nick</th>
18 <th class="small-2">Elo</th>
24 <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>
25 <td>${int(round(rank.elo))}</th>
35 <div class="small-12 large-6 large-offset-3 columns">
36 <!-- navigation links -->
37 ${navlinks("rank_index", ranks.page, ranks.last_page, game_type_cd=game_type_cd)}