]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/templates/server_info.mako
Fix two missed route_urls to game_finder.
[xonotic/xonstat.git] / xonstat / templates / server_info.mako
index 74020354342872c1094cc19c33a6b7fbfd433196..c99e1532d9ce804d45b0be0a7a4c2f6d91c1edfb 100644 (file)
@@ -11,6 +11,10 @@ Server Information
 % endif
 </%block>
 
+<%block name="css">
+    ${parent.css()}
+    <link href="/static/css/sprites.css" rel="stylesheet">
+</%block>
 
 % if server is None:
 <h2>Sorry, that server wasn't found!</h2>
@@ -31,7 +35,7 @@ Server Information
 <div class="row">
   <div class="span4">
     <h3>Top Scoring Players</h3>
-      <table class="table table-bordered table-condensed">
+      <table class="table table-hover table-condensed">
         <thead>
           <tr>
             <th>#</th>
@@ -55,12 +59,13 @@ Server Information
         % endfor
         </tbody>
       </table>
+      <p class="note">*Most active stats are from the past 7 days</p>
   </div> <!-- /span4 -->
 
 
   <div class="span4">
     <h3>Most Active Players</h3>
-    <table class="table table-bordered table-condensed">
+    <table class="table table-hover table-condensed">
       <thead>
         <tr>
           <th>#</th>
@@ -89,7 +94,7 @@ Server Information
 
   <div class="span4">
     <h3>Most Active Maps</h3>
-    <table class="table table-bordered table-condensed">
+    <table class="table table-hover table-condensed">
       <thead>
         <tr>
           <th>#</th>
@@ -119,10 +124,11 @@ Server Information
 
 
 
+% if len(recent_games) > 0:
 <div class="row">
   <div class="span12">
-    <h3>Recent Games</h2>
-    <table class="table table-bordered table-condensed">
+    <h3>Most Recent Games</h2>
+    <table class="table table-hover table-condensed">
       <thead>
         <tr>
           <th></th>
@@ -135,10 +141,10 @@ Server Information
       <tbody>
         % 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 class="tdcenter"><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="tdcenter"><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('map_info', id=rg.map_id)}" title="Go to the map detail page for this map">${rg.map_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>
@@ -150,8 +156,10 @@ Server Information
         % endfor
       </tbody>
     </table>
+    <p><a href="${request.route_url('game_index', _query={'server_id':server.server_id})}">More...</a></p>
   </div>
 </div>
+% endif
 
 
 % endif