]> git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/templates/map_info.mako
Integrate the new helpers everywhere.
[xonotic/xonstat.git] / xonstat / templates / map_info.mako
index cda2035ba18e5aa3a88b9955b0a3f4976348e2c8..4394721f3dfd171265c7d1837cf2b59c2e3ec455 100644 (file)
@@ -14,6 +14,10 @@ Map Information
 ${parent.title()}
 </%block>
 
+<%block name="css">
+    ${parent.css()}
+    <link href="/static/css/sprites.css" rel="stylesheet">
+</%block>
 
 % if gmap is None:
 <h2>Sorry, that map wasn't found!</h2>
@@ -146,9 +150,10 @@ ${parent.title()}
 % endif
 
 
+% if len(recent_games) > 0:
 <div class="row">
   <div class="span12">
-    <h3>Recent Games</h3>
+    <h3>Most Recent Games</h3>
     <table class="table table-bordered table-condensed">
       <thead>
         <tr>
@@ -163,9 +168,9 @@ ${parent.title()}
         % for rg in recent_games:
         <tr>
           <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>
-          <td class="gt_icon"><img title="${rg.game_type_cd}" src="/static/images/icons/24x24/${rg.game_type_cd}.png" alt="${rg.game_type_cd}" /></td>
+          <td><span class="sprite sprite-${rg.game_type_cd}" alt="${rg.game_type_cd}"></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.create_dt.strftime('%a, %d %b %Y %H:%M:%S UTC')}">${rg.fuzzy_date}</span></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>
             % 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>
@@ -179,6 +184,7 @@ ${parent.title()}
     </table>
   </div>
 </div>
+% endif
 
 
 % endif