]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Whoops, add the game finder template!
authorAnt Zucaro <azucaro@gmail.com>
Mon, 24 Dec 2012 17:55:16 +0000 (12:55 -0500)
committerAnt Zucaro <azucaro@gmail.com>
Mon, 24 Dec 2012 17:55:16 +0000 (12:55 -0500)
xonstat/templates/game_finder.mako [new file with mode: 0644]

diff --git a/xonstat/templates/game_finder.mako b/xonstat/templates/game_finder.mako
new file mode 100644 (file)
index 0000000..bca5e20
--- /dev/null
@@ -0,0 +1,47 @@
+<%inherit file="base.mako"/>
+<%namespace file="navlinks.mako" import="navlinks" />
+
+<%block name="css">
+    ${parent.css()}
+    <link href="/static/css/sprites.css" rel="stylesheet">
+</%block>
+
+% if len(recent_games) > 0:
+<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 rg in recent_games.items:
+        <tr>
+          <td><a class="btn btn-primary btn-small" href="${request.route_url('game_info', id=rg.game_id)}" title="View detailed information about this game">view</a></td>
+          <td class="tdcenter"><span alt="${rg.game_type_cd}" class="sprite sprite-${rg.game_type_cd}"></span></td>
+          <td><a href="${request.route_url('server_info', id=rg.server_id)}" title="Go to the detail page for this server">${rg.server_name}</a></td>
+          <td><a href="${request.route_url('map_info', id=rg.map_id)}" title="Go to the map detail page for this map">${rg.map_name}</a></td>
+          <td><span class="abstime" data-epoch="${rg.epoch}" title="${rg.start_dt.strftime('%a, %d %b %Y %H:%M:%S UTC')}">${rg.fuzzy_date}</span></td>
+          <td>
+            % if rg.player_id > 2:
+            <a href="${request.route_url('player_info', id=rg.player_id)}" title="Go to the player info page for this player">${rg.nick_html_colors|n}</a></td>
+            % else:
+            ${rg.nick_html_colors|n}</td>
+            % endif
+        </tr>
+        % endfor
+        </tbody>
+    </table>
+  </div> <!-- /span12 -->
+</div> <!-- /row -->
+
+<!-- navigation links -->
+${navlinks("game_finder", recent_games.page, recent_games.last_page, search_query=query)}
+% endif