]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/templates/main_index.mako
dos2unix file conversions for everything
[xonotic/xonstat.git] / xonstat / templates / main_index.mako
old mode 100755 (executable)
new mode 100644 (file)
index f5b8abd..c731a0e
-<%inherit file="base.mako"/>\r
-\r
-<%block name="title">\r
-Leaderboard\r
-</%block>\r
-\r
-<%block name="hero_unit">\r
-      <div class="hero-unit">\r
-        <img src="/static/css/img/web_background_l2.png" />\r
-        #####<p id="statline">Tracking <a href="#">12345</a> players, <a href="#">12345</a> games (<a href="#">123</a> duels, <a href="#">123</a> ctfs, <a href="#">123</a> dms), <a href="#">12345</a> servers, and <a href="#">12345</a> maps since November 2011.</p>\r
-        <p id="statline">Tracking Xonotic statistics since October 2011.</p>\r
-        <p><a class="btn btn-primary btn-large" href="http://www.xonotic.org/download" title="Download Xonotic">Get the game &raquo;</a></p>\r
-      </div>\r
-</%block>\r
-\r
-<div class="row">\r
-  <div class="span4">\r
-    ##### DUEL RANKS #####\r
-    <h3>Duel Ranks</h3>\r
-    <table class="table table-bordered table-condensed">\r
-      <thead>\r
-        <tr>\r
-          <th>#</th>\r
-          <th>Nick</th>\r
-          <th>Elo</th>\r
-        </tr>\r
-      </thead>\r
-      <tbody>\r
-      <% i = 1 %>\r
-      % for (player_id, nick, elo) in duel_ranks:\r
-        <tr>\r
-          <td>${i}</td>\r
-          % if player_id != '-':\r
-          <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>\r
-          % else:\r
-          <td>${nick|n}</td>\r
-          % endif\r
-          % if elo != '-':\r
-          <td>${round(elo, 3)}</td>\r
-          % else:\r
-          <td>${elo}</td>\r
-          % endif\r
-        </tr>\r
-        <% i = i+1 %>\r
-      % endfor\r
-      </tbody>\r
-    </table>\r
-    <p class="note"><a href="${request.route_url('rank_index', page=1, game_type_cd='duel')}" title="See more duel rankings">More...</a></p>\r
-  </div> <!-- /span4 -->\r
-\r
-  <div class="span4">\r
-    ##### CTF RANKS #####\r
-    <h3>CTF Ranks</h3>\r
-    <table class="table table-bordered table-condensed">\r
-      <thead>\r
-        <tr>\r
-          <th>#</th>\r
-          <th>Nick</th>\r
-          <th>Elo</th>\r
-        </tr>\r
-      </thead>\r
-      <tbody>\r
-      <% i = 1 %>\r
-      % for (player_id, nick, elo) in ctf_ranks:\r
-        <tr>\r
-          <td>${i}</td>\r
-          % if player_id != '-':\r
-          <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>\r
-          % else:\r
-          <td>${nick|n}</td>\r
-          % endif\r
-          % if elo != '-':\r
-          <td>${round(elo, 3)}</td>\r
-          % else:\r
-          <td>${elo}</td>\r
-          % endif\r
-        </tr>\r
-        <% i = i+1 %>\r
-      % endfor\r
-      </tbody>\r
-    </table>\r
-    <p class="note"><a href="${request.route_url('rank_index', page=1, game_type_cd='ctf')}" title="See more CTF rankings">More...</a></p>\r
-  </div> <!-- /span4 -->\r
-\r
-  <div class="span4">\r
-    ##### DM RANKS #####\r
-    <h3>DM Ranks</h3>\r
-    <table class="table table-bordered table-condensed">\r
-      <thead>\r
-        <tr>\r
-          <th>#</th>\r
-          <th>Nick</th>\r
-          <th>Elo</th>\r
-        </tr>\r
-      </thead>\r
-      <tbody>\r
-      <% i = 1 %>\r
-      % for (player_id, nick, elo) in dm_ranks:\r
-        <tr>\r
-          <td>${i}</td>\r
-          % if player_id != '-':\r
-          <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>\r
-          % else:\r
-          <td>${nick|n}</td>\r
-          % endif\r
-          % if elo != '-':\r
-          <td>${round(elo, 3)}</td>\r
-          % else:\r
-          <td>${elo}</td>\r
-          % endif\r
-        </tr>\r
-        <% i = i+1 %>\r
-      % endfor\r
-    </tbody>\r
-  </table>\r
-  <p class="note"><a href="${request.route_url('rank_index', page=1, game_type_cd='dm')}" title="See more deathmatch rankings">More...</a></p>\r
-  </div> <!-- /span4 -->\r
-</div> <!-- /row -->\r
-\r
-<div class="row">\r
-  <div class="span4">\r
-    <h3>Most Active Players</h3>\r
-    <table class="table table-bordered table-condensed">\r
-      <thead>\r
-        <tr>\r
-          <th>#</th>\r
-          <th>Nick</th>\r
-          <th class="play-time">Play Time</th>\r
-        </tr>\r
-      </thead>\r
-      <tbody>\r
-      <% i = 1 %>\r
-      % for (player_id, nick, alivetime) in top_players:\r
-        <tr>\r
-          <td>${i}</td>\r
-          % if player_id != '-':\r
-          <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>\r
-          % else:\r
-          <td>${nick|n}</td>\r
-          % endif\r
-          <td class="play-time">${alivetime}</td>\r
-        </tr>\r
-        <% i = i+1 %>\r
-      % endfor\r
-      </tbody>\r
-    </table>\r
-    <p class="note">*Most active stats are from the past 7 days</p>\r
-  </div> <!-- /span4 -->\r
-\r
-  <div class="span4">\r
-    <h3>Most Active Servers</h3>\r
-    <table class="table table-bordered table-condensed">\r
-      <thead>\r
-        <tr>\r
-          <th>#</th>\r
-          <th>Server</th>\r
-          <th>Games</th>\r
-        </tr>\r
-      </thead>\r
-      <tbody>\r
-      <% i = 1 %>\r
-      % for (server_id, name, count) in top_servers:\r
-        <tr>\r
-          <td>${i}</td>\r
-          % if server_id != '-':\r
-          <td><a href="${request.route_url('server_info', id=server_id)}" title="Go to the server info page for ${name}">${name}</a></td>\r
-          % else:\r
-          <td>${name}</td>\r
-          % endif\r
-          <td>${count}</td>\r
-        </tr>\r
-        <% i = i+1 %>\r
-      % endfor\r
-      </tbody>\r
-    </table>\r
-  </div> <!-- /span4 -->\r
-\r
-  <div class="span4">\r
-    <h3>Most Active Maps</h3>\r
-    <table class="table table-bordered table-condensed">\r
-      <thead>\r
-        <tr>\r
-          <th>#</th>\r
-          <th>Map</th>\r
-          <th>Games</th>\r
-        </tr>\r
-      </thead>\r
-      <tbody>\r
-      <% i = 1 %>\r
-      % for (map_id, name, count) in top_maps:\r
-        <tr>\r
-          <td>${i}</td>\r
-          % if map_id != '-':\r
-          <td><a href="${request.route_url('map_info', id=map_id)}" title="Go to the map info page for ${name}">${name}</a></td>\r
-          % else:\r
-          <td>${name}</td>\r
-          % endif\r
-          <td>${count}</td>\r
-        </tr>\r
-        <% i = i+1 %>\r
-      % endfor\r
-      </tbody>\r
-    </table>\r
-  </div> <!-- /span4 -->\r
-</div> <!-- /row -->\r
-\r
-<div class="row">\r
-  <div class="span12">\r
-    <h3>Recent Games</h3>\r
-    <table class="table table-bordered table-condensed">\r
-      <thead>\r
-        <tr>\r
-          <th></th>\r
-          <th>Type</th>\r
-          <th>Server</th>\r
-          <th>Map</th>\r
-          <th>Time</th>\r
-          <th>Winner</th>\r
-        </tr>\r
-      </thead>\r
-      <tbody>\r
-      % for (game, server, map, pgstat) in recent_games:\r
-        % if game != '-':\r
-        <tr>\r
-          <td><a class="btn btn-primary btn-small" href="${request.route_url('game_info', id=game.game_id)}" title="View detailed information about this game">view</a></td>\r
-          <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>\r
-          <td><a href="${request.route_url('server_info', id=server.server_id)}" title="Go to the detail page for this server">${server.name}</a></td>\r
-          <td><a href="${request.route_url('map_info', id=map.map_id)}" title="Go to the map detail page for this map">${map.name}</a></td>\r
-          <td>${game.start_dt.strftime('%m/%d/%Y %H:%M')}</td>\r
-          <td>\r
-            % if pgstat.player_id > 2:\r
-            <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>\r
-            % else:\r
-            ${pgstat.nick_html_colors()|n}</td>\r
-            % endif\r
-        </tr>\r
-        % else:\r
-        <tr>\r
-          <td>-</td>\r
-          <td>-</td>\r
-          <td>-</td>\r
-          <td>-</td>\r
-          <td>-</td>\r
-          <td>-</td>\r
-        </tr>\r
-        % endif\r
-        % endfor\r
-        </tbody>\r
-    </table>\r
-  </div> <!-- /span12 -->\r
-</div> <!-- /row -->\r
+<%inherit file="base.mako"/>
+
+<%block name="title">
+Leaderboard
+</%block>
+
+<%block name="hero_unit">
+      <div class="hero-unit">
+        <img src="/static/css/img/web_background_l2.png" />
+        #####<p id="statline">Tracking <a href="#">12345</a> players, <a href="#">12345</a> games (<a href="#">123</a> duels, <a href="#">123</a> ctfs, <a href="#">123</a> dms), <a href="#">12345</a> servers, and <a href="#">12345</a> maps since November 2011.</p>
+        <p id="statline">Tracking Xonotic statistics since October 2011.</p>
+        <p><a class="btn btn-primary btn-large" href="http://www.xonotic.org/download" title="Download Xonotic">Get the game &raquo;</a></p>
+      </div>
+</%block>
+
+<div class="row">
+  <div class="span4">
+    ##### DUEL RANKS #####
+    <h3>Duel Ranks</h3>
+    <table class="table table-bordered table-condensed">
+      <thead>
+        <tr>
+          <th>#</th>
+          <th>Nick</th>
+          <th>Elo</th>
+        </tr>
+      </thead>
+      <tbody>
+      <% i = 1 %>
+      % for (player_id, nick, elo) in duel_ranks:
+        <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|n}</td>
+          % endif
+          % if elo != '-':
+          <td>${round(elo, 3)}</td>
+          % else:
+          <td>${elo}</td>
+          % endif
+        </tr>
+        <% i = i+1 %>
+      % endfor
+      </tbody>
+    </table>
+    <p class="note"><a href="${request.route_url('rank_index', page=1, game_type_cd='duel')}" title="See more duel rankings">More...</a></p>
+  </div> <!-- /span4 -->
+
+  <div class="span4">
+    ##### CTF RANKS #####
+    <h3>CTF Ranks</h3>
+    <table class="table table-bordered table-condensed">
+      <thead>
+        <tr>
+          <th>#</th>
+          <th>Nick</th>
+          <th>Elo</th>
+        </tr>
+      </thead>
+      <tbody>
+      <% i = 1 %>
+      % for (player_id, nick, elo) in ctf_ranks:
+        <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|n}</td>
+          % endif
+          % if elo != '-':
+          <td>${round(elo, 3)}</td>
+          % else:
+          <td>${elo}</td>
+          % endif
+        </tr>
+        <% i = i+1 %>
+      % endfor
+      </tbody>
+    </table>
+    <p class="note"><a href="${request.route_url('rank_index', page=1, game_type_cd='ctf')}" title="See more CTF rankings">More...</a></p>
+  </div> <!-- /span4 -->
+
+  <div class="span4">
+    ##### DM RANKS #####
+    <h3>DM Ranks</h3>
+    <table class="table table-bordered table-condensed">
+      <thead>
+        <tr>
+          <th>#</th>
+          <th>Nick</th>
+          <th>Elo</th>
+        </tr>
+      </thead>
+      <tbody>
+      <% i = 1 %>
+      % for (player_id, nick, elo) in dm_ranks:
+        <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|n}</td>
+          % endif
+          % if elo != '-':
+          <td>${round(elo, 3)}</td>
+          % else:
+          <td>${elo}</td>
+          % endif
+        </tr>
+        <% i = i+1 %>
+      % endfor
+    </tbody>
+  </table>
+  <p class="note"><a href="${request.route_url('rank_index', page=1, game_type_cd='dm')}" title="See more deathmatch rankings">More...</a></p>
+  </div> <!-- /span4 -->
+</div> <!-- /row -->
+
+<div class="row">
+  <div class="span4">
+    <h3>Most Active Players</h3>
+    <table class="table table-bordered table-condensed">
+      <thead>
+        <tr>
+          <th>#</th>
+          <th>Nick</th>
+          <th class="play-time">Play 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|n}</td>
+          % endif
+          <td class="play-time">${alivetime}</td>
+        </tr>
+        <% i = i+1 %>
+      % endfor
+      </tbody>
+    </table>
+    <p class="note">*Most active stats are from the past 7 days</p>
+  </div> <!-- /span4 -->
+
+  <div class="span4">
+    <h3>Most Active Servers</h3>
+    <table class="table table-bordered table-condensed">
+      <thead>
+        <tr>
+          <th>#</th>
+          <th>Server</th>
+          <th>Games</th>
+        </tr>
+      </thead>
+      <tbody>
+      <% i = 1 %>
+      % for (server_id, name, count) in top_servers:
+        <tr>
+          <td>${i}</td>
+          % if server_id != '-':
+          <td><a href="${request.route_url('server_info', id=server_id)}" title="Go to the server info page for ${name}">${name}</a></td>
+          % else:
+          <td>${name}</td>
+          % endif
+          <td>${count}</td>
+        </tr>
+        <% i = i+1 %>
+      % endfor
+      </tbody>
+    </table>
+  </div> <!-- /span4 -->
+
+  <div class="span4">
+    <h3>Most Active Maps</h3>
+    <table class="table table-bordered table-condensed">
+      <thead>
+        <tr>
+          <th>#</th>
+          <th>Map</th>
+          <th>Games</th>
+        </tr>
+      </thead>
+      <tbody>
+      <% i = 1 %>
+      % for (map_id, name, count) in top_maps:
+        <tr>
+          <td>${i}</td>
+          % if map_id != '-':
+          <td><a href="${request.route_url('map_info', id=map_id)}" title="Go to the map info page for ${name}">${name}</a></td>
+          % else:
+          <td>${name}</td>
+          % endif
+          <td>${count}</td>
+        </tr>
+        <% i = i+1 %>
+      % endfor
+      </tbody>
+    </table>
+  </div> <!-- /span4 -->
+</div> <!-- /row -->
+
+<div class="row">
+  <div class="span12">
+    <h3>Recent Games</h3>
+    <table class="table table-bordered table-condensed">
+      <thead>
+        <tr>
+          <th></th>
+          <th>Type</th>
+          <th>Server</th>
+          <th>Map</th>
+          <th>Time</th>
+          <th>Winner</th>
+        </tr>
+      </thead>
+      <tbody>
+      % for (game, server, map, pgstat) in recent_games:
+        % if game != '-':
+        <tr>
+          <td><a class="btn btn-primary btn-small" href="${request.route_url('game_info', id=game.game_id)}" title="View detailed information about this game">view</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><a href="${request.route_url('server_info', id=server.server_id)}" title="Go to the detail page for this server">${server.name}</a></td>
+          <td><a href="${request.route_url('map_info', id=map.map_id)}" title="Go to the map detail page for this map">${map.name}</a></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>
+            % else:
+            ${pgstat.nick_html_colors()|n}</td>
+            % endif
+        </tr>
+        % else:
+        <tr>
+          <td>-</td>
+          <td>-</td>
+          <td>-</td>
+          <td>-</td>
+          <td>-</td>
+          <td>-</td>
+        </tr>
+        % endif
+        % endfor
+        </tbody>
+    </table>
+  </div> <!-- /span12 -->
+</div> <!-- /row -->