]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/templates/player_game_index.mako
Various small improvements to style and headings
[xonotic/xonstat.git] / xonstat / templates / player_game_index.mako
index 7b23bf2017844866d7903abe09d76bab731a0a8f..0ace35d08990cabd7ca815423056db7fe26eb59f 100755 (executable)
@@ -1,19 +1,18 @@
 <%inherit file="base.mako"/>
 
 <%block name="title">
-Player Game Index for ${player.nick} - ${parent.title()}
+Player Game Index for ${player.nick_html_colors()} - ${parent.title()}
 </%block>
 
 % if not games:
 <h2>Sorry, no games yet. Get playing, scrub!</h2>
 
 % else:
-<h2>Recent Games by ${player.nick}</h2>
-<ul>
+<h2>Recent Games by ${player.nick_html_colors()}</h2>
 % for (playergamestat, game, server, map) in games:
    <li><a href="${request.route_url("game_info", id=game.game_id)}" name="Game info page for game #${game.game_id}">#${game.game_id}:</a> <a href="${request.route_url("map_info", id=map.map_id)}" name="Map info page for ${map.name}">${map.name}</a></li>
 % endfor
-</ul>
+<br />
 % endif
 
 % if games.previous_page: