]> git.rm.cloudns.org Git - xonotic/xonstat.git/commitdiff
Small fix for ordering in game_index
authorAnt Zucaro <azucaro@gmail.com>
Fri, 24 Jun 2011 15:40:19 +0000 (11:40 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Fri, 24 Jun 2011 15:40:19 +0000 (11:40 -0400)
xonstat/templates/game_index.mako

index 9c04c9c3f1b65e3a36ba6810eb0b95210140a1fb..06086b28ad9fcd404429dfe0016eab2619ad081b 100755 (executable)
@@ -20,11 +20,12 @@ $(document).ready(function() { $('.scoreboard').dataTable(); } );
 % else:\r
 <h2>Recent Games</h2>\r
 % for (game, server, map) in games:\r
-<p>\r
-   <a href="${request.route_url("map_info", id=map.map_id)}" name="Map info page for ${map.name}">${map.name}</a> on <a href="${request.route_url("server_info", id=server.server_id)}" name="Server info page for ${server.name}">${server.name}</a> (<a href="${request.route_url('game_info', id=game.game_id)}" name="Permalink for game #${game.game_id}">permalink</a> for this game)\r
 \r
+<p>\r
+   <a href="${request.route_url("map_info", id=map.map_id)}" name="Map info page for ${map.name}">${map.name}</a> on <a href="${request.route_url("server_info", id=server.server_id)}" name="Server info page for ${server.name}">${server.name}</a> (<a href="${request.route_url('game_info', id=game.game_id)}" name="Permalink for game #${game.game_id}">permalink</a> for this game):\r
 ## show scoreboard using a def from another file\r
 ${scoreboard(game.game_type_cd, pgstats[game.game_id])}\r
+</p>\r
 \r
 % endfor\r
 % endif\r