]> git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Add the 'plus' link to the recent games table too.
authorAnt Zucaro <azucaro@gmail.com>
Sun, 23 Oct 2016 14:16:38 +0000 (10:16 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Sun, 23 Oct 2016 14:16:38 +0000 (10:16 -0400)
xonstat/templates/server_info.mako

index 5893f91475e2b6ab37fb20ed2f9fce524e03e32b..1955130f2d6b1d4c78e285600b879d2e5f62dd28 100644 (file)
   % 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