]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/templates/top_players_by_time.mako
Style the game table for ca, dm, duel, rune, and tdm.
[xonotic/xonstat.git] / xonstat / templates / top_players_by_time.mako
index e101479e646ddfb4981893c3405453f89a32ba9b..37a47e9ab61d69102877ca858c091896f2eb489a 100644 (file)
@@ -3,49 +3,53 @@
 <%namespace file="navlinks.mako" import="navlinks" />
 
 <%block name="navigation">
-${nav.nav('players')}
+  ${nav.nav('players')}
 </%block>
 
 <%block name="title">
-Active Players Index
+  Active Players Index
 </%block>
 
 % if not top_players:
-<h2>Sorry, no players yet. Get playing!</h2>
+  <h2>Sorry, no players yet. Get playing!</h2>
 
 % else:
-##### ACTIVE PLAYERS #####
-<div class="row">
-  <div class="span6 offset3">
-    <table class="table table-hover table-condensed">
-      <thead>
-        <tr>
-          <th style="width:40px;">#</th>
-          <th style="width:150px;">Nick</th>
-          <th class="play-time" style="width:90px;">Play Time</th>
-        </tr>
-      </thead>
-      <tbody>
-      ##### this is to get around the actual row_number/rank of the player not being in the actual query
-      <% i = 1 + (top_players.page-1) * 25%>
-      % for (player_id, nick, alivetime) in top_players.items:
-        <tr>
-          <td>${i}</td>
-          % if player_id != '-':
-          <td class="nostretch" style="max-width:150px;"><a href="${request.route_url('player_info', id=player_id)}" title="Go to the player info page for this player">${nick|n}</a></td>
-          % else:
-          <td class="nostretch" style="max-width:150px;">${nick|n}</td>
-          % endif
-          <td class="play-time">${alivetime}</td>
-        </tr>
-        <% i = i+1 %>
-      % endfor
-      </tbody>
-    </table>
-    <p class="note">*figures are from the past 7 days</p>
-  </div> <!-- /span4 -->
-% endif
+  ##### ACTIVE PLAYERS #####
+  <div class="row">
+    <div class="small-12 large-6 large-offset-3 columns">
+      <table class="table-hover table-condensed">
+        <thead>
+          <tr>
+            <th class="small-2">#</th>
+            <th class="small-7">Nick</th>
+            <th class="small-3">Play Time</th>
+          </tr>
+        </thead>
+
+        <tbody>
+        ##### this is to get around the actual row_number/rank of the player not being in the actual query
+        <% i = 1 + (top_players.page-1) * 25%>
+        % for (player_id, nick, alivetime) in top_players.items:
+          <tr>
+            <td>${i}</td>
+            % if player_id != '-':
+            <td class="no-stretch"><a href="${request.route_url('player_info', id=player_id)}" title="Go to the player info page for this player">${nick|n}</a></td>
+            % else:
+            <td class="no-stretch">${nick|n}</td>
+            % endif
+            <td>${alivetime}</td>
+          </tr>
+          <% i = i+1 %>
+        % endfor
+        </tbody>
+      </table>
+      <small>*figures are from the past 7 days</small>
+    </div>
+  </div>
 
-${navlinks("top_players_by_time", top_players.page, top_players.last_page)}
-  </div> <!-- /span4 -->
-</div> <!-- /row -->
+  <div class="row">
+    <div class="small-12 large-6 large-offset-3 columns">
+      ${navlinks("top_players_by_time", top_players.page, top_players.last_page)}
+    </div>
+  </div>
+% endif