]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Gridify the map info page.
authorAnt Zucaro <azucaro@gmail.com>
Sun, 5 Feb 2012 05:13:58 +0000 (00:13 -0500)
committerAnt Zucaro <azucaro@gmail.com>
Sun, 5 Feb 2012 05:13:58 +0000 (00:13 -0500)
xonstat/templates/map_info.mako

index f4f5b451e8d3e95e12649d20f95bd35c6008f7c9..9bed0313d5af1f3586726d76b8a106b9b7f37e58 100755 (executable)
@@ -8,7 +8,7 @@ ${nav.nav('maps')}
 
 <%block name="title">
 % if gmap:
-Map Information for ${gmap.name}
+Map Information
 % endif
 
 ${parent.title()}
@@ -19,138 +19,134 @@ ${parent.title()}
 <h2>Sorry, that map wasn't found!</h2>
 
 % else:
-<h2>Map Detail - ${gmap.name}</h2>
+<div class="row">
+  <div class="span12">
+    <h2>${gmap.name}</h2>
 
-##### RECENT GAMES #####
-<h2>Recent Games</h2>
-<table id="recent-games">
-    <thead>
+    <h3>Recent Games</h3>
+    <table class="table table-bordered table-condensed">
+      <thead>
         <tr>
-            <th>Game #</th>
-            <th>Type</th>
-            <th>Time</th>
-            <th>Winner</th>
+          <th>Game #</th>
+          <th>Type</th>
+          <th>Time</th>
+          <th>Winner</th>
         </tr>
-    </thead>
-    <tbody>
-    % for (game, srv, map, pgstat) in recent_games:
+      </thead>
+      <tbody>
+        % for (game, srv, map, pgstat) in recent_games:
         % if game != '-':
         <tr>
-            <td><a href="${request.route_url('game_info', id=game.game_id)}" title="View detailed information about this game">${game.game_id}</a></td>
-            <td class="gt_icon"><img title="${game.game_type_cd}" src="/static/images/icons/24x24/${game.game_type_cd}.png" alt="${game.game_type_cd}" /></td>
-            <td>${game.start_dt.strftime('%m/%d/%Y %H:%M')}</td>
-            <td class=
-            % if pgstat.team == 5:
-            "blue"
-            % elif pgstat.team == 14:
-            "red"
-            % elif pgstat.team == 13:
-            "yellow"
-            % endif
-            >
+          <td><a href="${request.route_url('game_info', id=game.game_id)}" title="View detailed information about this game">${game.game_id}</a></td>
+          <td class="gt_icon"><img title="${game.game_type_cd}" src="/static/images/icons/24x24/${game.game_type_cd}.png" alt="${game.game_type_cd}" /></td>
+          <td>${game.start_dt.strftime('%m/%d/%Y %H:%M')}</td>
+          <td>
             % if pgstat.player_id > 2:
-            <a href="${request.route_url('player_info', id=pgstat.player_id)}" title="Go to the player info page for this player">${pgstat.nick_html_colors()|n}</a></td>
+            <a href="${request.route_url('player_info', id=pgstat.player_id)}" title="Go to the player info page for this player">${pgstat.nick_html_colors()|n}</a>
+          </td>
             % else:
-            ${pgstat.nick_html_colors()|n}</td>
+            ${pgstat.nick_html_colors()|n}
+          </td>
             % endif
         </tr>
         % else:
         <tr>
-            <td>-</td>
-            <td>-</td>
-            <td>-</td>
-            <td>-</td>
+          <td>-</td>
+          <td>-</td>
+          <td>-</td>
+          <td>-</td>
         </tr>
         % endif
     % endfor
-    </tbody>
-</table>
+        </tbody>
+    </table>
+  </div>
+</div>
 
 
-##### TOP SCORERS #####
-<div class="table_block">
-<h2>Top Scoring Players</h2>
-<table>
-    <thead>
+<div class="row">
+  <div class="span4">
+    <h3>Top Scoring Players</h3>
+    <table class="table table-bordered table-condensed">
+      <thead>
         <tr>
-            <th>#</th>
-            <th>Nick</th>
-            <th>Score</th>
+          <th>#</th>
+          <th>Nick</th>
+          <th>Score</th>
         </tr>
-    </thead>
-    <tbody>
-    <% i = 1 %>
-    % for (score_player_id, score_nick, score_value) in top_scorers:
+      </thead>
+      <tbody>
+        <% i = 1 %>
+        % for (score_player_id, score_nick, score_value) in top_scorers:
         <tr>
-            <td>${i}</td>
-            % if score_player_id != '-':
-            <td><a href="${request.route_url('player_info', id=score_player_id)}" title="Go to the player info page for this player">${score_nick|n}</a></td>
-            % else:
-            <td>${score_nick}</td>
-            % endif
-            <td>${score_value}</td>
+          <td>${i}</td>
+          % if score_player_id != '-':
+          <td><a href="${request.route_url('player_info', id=score_player_id)}" title="Go to the player info page for this player">${score_nick|n}</a></td>
+          % else:
+          <td>${score_nick}</td>
+          % endif
+          <td>${score_value}</td>
         </tr>
         <% i = i+1 %>
-    % endfor
-    </tbody>
-</table>
-</div>
+        % endfor
+        </tbody>
+    </table>
+  </div>
 
 
-##### TOP PLAYERS #####
-<div class="table_block">
-<h2>Most Active Players</h2>
-<table id="top-players">
+<div class="span4">
+  <h3>Most Active Players</h3>
+  <table class="table table-bordered table-condensed">
     <thead>
-        <tr>
-            <th>#</th>
-            <th>Nick</th>
-            <th>Playing Time</th>
-        </tr>
+      <tr>
+        <th>#</th>
+        <th>Nick</th>
+        <th>Playing Time</th>
+      </tr>
     </thead>
     <tbody>
     <% i = 1 %>
     % for (player_id, nick, alivetime) in top_players:
-        <tr>
-            <td>${i}</td>
-            % if player_id != '-':
-            <td><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>${nick}</td>
-            % endif
-            <td>${alivetime}</td>
-        </tr>
-        <% i = i+1 %>
+      <tr>
+        <td>${i}</td>
+        % if player_id != '-':
+        <td><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>${nick}</td>
+        % endif
+        <td>${alivetime}</td>
+      </tr>
+      <% i = i+1 %>
     % endfor
     </tbody>
-</table>
+  </table>
 </div>
 
 
-##### TOP SERVERS #####
-<div class="table_block">
-<h2>Most Active Servers</h2>
-<table id="top-servers">
+<div class="span4">
+  <h3>Most Active Servers</h3>
+  <table class="table table-bordered table-condensed">
     <thead>
-        <tr>
-            <th>#</th>
-            <th>Name</th>
-            <th>Times Played</th>
-        </tr>
+      <tr>
+        <th>#</th>
+        <th>Name</th>
+        <th>Times Played</th>
+      </tr>
     </thead>
     <tbody>
     <% i = 1 %>
     % for (server_id, name, times_played) in top_servers:
-        <tr>
-            <td>${i}</td>
-            <td><a href="${request.route_url('server_info', id=server_id)}" title="Go to the server info page for this server">${name}</a></td>
-            <td>${times_played}</td>
-        </tr>
-        <% i = i+1 %>
+      <tr>
+        <td>${i}</td>
+        <td><a href="${request.route_url('server_info', id=server_id)}" title="Go to the server info page for this server">${name}</a></td>
+        <td>${times_played}</td>
+      </tr>
+      <% i = i+1 %>
     % endfor
     </tbody>
 </table>
 </div>
 
+</div> <!-- /row -->
 
 % endif