1 <%inherit file="base.mako"/>
2 <%namespace name="nav" file="nav.mako" />
3 <%namespace file="navlinks.mako" import="navlinks" />
5 <%block name="navigation">
13 ##### ROW OF GAME TYPE ICONS #####
15 <div class="small-12 columns">
17 % for gt, url in game_type_links:
18 <li class="text-center tab-title
19 % if game_type_cd == gt or (game_type_cd is None and gt == 'overall'):
24 <a href="${url}" alt="${gt}" title="Show only ${gt} games">
25 <span class="sprite sprite-${gt}"> </span><br />
35 ##### RECENT GAMES TABLE #####
37 <div class="small-12 columns">
38 % if len(recent_games) > 0:
39 <table class="table-hover table-condensed">
42 <th class="small-1 text-center"></th>
43 <th class="small-1">Type</th>
44 <th class="show-for-medium-up small-3">Server</th>
45 <th class="show-for-medium-up small-2">Map</th>
46 <th class="show-for-large-up small-2">Time</th>
47 <th class="small-3">Winner</th>
51 % for rg in recent_games:
53 <td class="text-center"><a class="button tiny" href="${request.route_url('game_info', id=rg.game_id)}" title="View detailed information about this game">view</a></td>
54 <td class="text-center"><i class="sprite sprite-${rg.game_type_cd}" title="${rg.game_type_descr}"></i></td>
55 <td class="show-for-medium-up no-stretch"><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>
56 <td class="show-for-medium-up"><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>
57 <td class="show-for-large-up"><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>
58 <td class="no-stretch">
59 % if rg.player_id > 2:
60 <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>
62 ${rg.nick_html_colors|n}</td>
69 <h2>No more games to show!</h2>
74 % if len(recent_games) == 20:
76 <div class="small-12 columns">
77 <ul class="pagination">
79 <a href="${request.route_url('game_index', _query=query)}" name="Next Page">Next <i class="fa fa-arrow-right"></i></a>