]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/templates/server_info.mako
That was a bad idea. Remove it.
[xonotic/xonstat.git] / xonstat / templates / server_info.mako
index a6ae731013466116abe8a29461eb4903cdb6b45f..1955130f2d6b1d4c78e285600b879d2e5f62dd28 100644 (file)
@@ -45,7 +45,7 @@
 
   <div class="row">
     <div class="small-12 large-4 columns">
-      <h5>Top Scoring Players</h5>
+      <h5>Top Scoring Players <a href="${request.route_url('server_top_scorers', id=server.server_id)}" title="See more top scoring players for this server"><i class="fa fa-plus-circle"></i></a></h5>
       <table class="table-hover table-condensed">
         <thead>
           <tr>
@@ -70,7 +70,7 @@
     </div>
 
     <div class="small-12 large-4 columns">
-      <h5>Most Active Players</h5>
+      <h5>Most Active Players <a href="${request.route_url('server_top_active', id=server.server_id)}" title="See more active players for this server"><i class="fa fa-plus-circle"></i></a></h5>
       <table class="table-hover table-condensed">
         <thead>
           <tr>
@@ -95,7 +95,7 @@
     </div>
 
     <div class="small-12 large-4 columns">
-      <h5>Most Active Maps</h5>
+      <h5>Most Active Maps <a href="${request.route_url('server_top_maps', id=server.server_id)}" title="See more top maps for this server"><i class="fa fa-plus-circle"></i></a></h5>
       <table class="table-hover table-condensed">
         <thead>
           <tr>
   % if len(recent_games) > 0:
     <div class="row">
       <div class="small-12 columns">
-        <h5>Most Recent Games</h5>
+        <h5>Most Recent Games <a href="${request.route_url('game_index', _query={'server_id':server.server_id})}"><i class="fa fa-plus-circle"></i></a></h5>
         <table class="table-hover table-condensed">
           <thead>
             <tr>
             % endfor
           </tbody>
         </table>
-        <p><a href="${request.route_url('game_index', _query={'server_id':server.server_id})}">More...</a></p>
       </div>
     </div>
   % endif