From 7559ff0e91805561a76d89659b91606a21129f7b Mon Sep 17 00:00:00 2001 From: Ant Zucaro <azucaro@gmail.com> Date: Fri, 20 Mar 2015 20:18:21 -0400 Subject: [PATCH] Fix the mobile view of the map_info page. --- xonstat/templates/map_info.mako | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xonstat/templates/map_info.mako b/xonstat/templates/map_info.mako index 166cb86..7a2d1b5 100644 --- a/xonstat/templates/map_info.mako +++ b/xonstat/templates/map_info.mako @@ -173,8 +173,8 @@ <tr> <td class="text-center"><a class="tiny button" href="${request.route_url('game_info', id=rg.game_id)}" title="View detailed information about this game">View</a></td> <td class="text-center"><span class="sprite sprite-${rg.game_type_cd}" alt="${rg.game_type_cd}" title="${rg.game_type_descr}"></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><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 class="show-for-medium-up"><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 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> <td class="no-stretch"> % 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> -- 2.39.5