]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/templates/game_finder.mako
Merge branch 'master' into approved
[xonotic/xonstat.git] / xonstat / templates / game_finder.mako
1 <%inherit file="base.mako"/>
2 <%namespace file="navlinks.mako" import="navlinks" />
3
4 <%block name="css">
5     ${parent.css()}
6     <link href="/static/css/sprites.css" rel="stylesheet">
7 </%block>
8
9 % if len(recent_games) > 0:
10 <div class="row">
11   <div class="span12">
12     <h3>Recent Games</h3>
13     <table class="table table-bordered table-condensed">
14       <thead>
15         <tr>
16           <th></th>
17           <th>Type</th>
18           <th>Server</th>
19           <th>Map</th>
20           <th>Time</th>
21           <th>Winner</th>
22         </tr>
23       </thead>
24       <tbody>
25       % for rg in recent_games.items:
26         <tr>
27           <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>
28           <td class="tdcenter"><span alt="${rg.game_type_cd}" class="sprite sprite-${rg.game_type_cd}"></span></td>
29           <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>
30           <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>
31           <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>
32           <td>
33             % if rg.player_id > 2:
34             <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>
35             % else:
36             ${rg.nick_html_colors|n}</td>
37             % endif
38         </tr>
39         % endfor
40         </tbody>
41     </table>
42   </div> <!-- /span12 -->
43 </div> <!-- /row -->
44
45 <!-- navigation links -->
46 ${navlinks("game_finder", recent_games.page, recent_games.last_page, search_query=query)}
47 % endif