]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/templates/rank_index.mako
Remove more refs to sqlahelper.
[xonotic/xonstat.git] / xonstat / templates / rank_index.mako
index 2a72a9483044d7a2629a14b277e9527807e69e36..f1ad358b97d357b17e35c5f93d3b9968ef2ee4dd 100644 (file)
@@ -2,38 +2,38 @@
 <%namespace file="navlinks.mako" import="navlinks" />
 
 <%block name="title">
-% if game_type_cd == 'dm':
-Deathmatch Rank Index
-% elif game_type_cd == 'duel':
-Duel Rank Index
-% elif game_type_cd == 'tdm':
-Team Deathmatch Rank Index
-% elif game_type_cd == 'ctf':
-Capture The Flag Rank Index
-% endif
+    ${game_type.descr} Rank Index
 </%block>
 
-% if not ranks:
-<h2>Sorry, no ranks yet. Get some buddies together and start playing!</h2>
+<div class="row">
+  <div class="small-12 large-6 large-offset-3 columns">
+    % if not ranks:
+      <h2>Sorry, no ranks yet. Get some buddies together and start playing!</h2>
 
-% else:
-<table id="rank-index-table" border="1">
-  <tr>
-    <th>Rank</th>
-    <th>Nick</th>
-    <th>Elo</th>
-  </tr>
-<% i = 1 %>
-% for rank in ranks:
-  <tr>
-    <td>${rank.rank}</td>
-    <td><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>
-    <td>${round(rank.elo, 3)}</th>
-  </tr>
-<% i += 1 %>
-% endfor
-</table>
+    % else:
+      <table class="table table-hover table-condensed" border="1">
+        <tr>
+          <th class="small-2">Rank</th>
+          <th class="small-8">Nick</th>
+          <th class="small-2">Elo</th>
+        </tr>
+        <% i = 1 %>
+        % for rank in ranks:
+        <tr>
+          <td>${rank.rank}</td>
+          <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>
+          <td>${int(round(rank.elo))}</th>
+        </tr>
+        <% i += 1 %>
+        % endfor
+      </table>
+    % endif
+  </div>
+</div>
 
-<!-- navigation links -->
-${navlinks("rank_index", ranks.page, ranks.last_page, game_type_cd=game_type_cd)}
-% endif
+<div class="row">
+  <div class="small-12 large-6 large-offset-3 columns">
+    <!-- navigation links -->
+    ${navlinks("rank_index", ranks.page, ranks.last_page, game_type_cd=game_type_cd)}
+  </div>
+</div>