]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Fix columns in the server_info view.
authorAnt Zucaro <azucaro@gmail.com>
Thu, 19 Mar 2015 22:40:07 +0000 (18:40 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Thu, 19 Mar 2015 22:40:07 +0000 (18:40 -0400)
xonstat/templates/server_info.mako

index ae793df42c35bb9295ca4fdca14b2ddb43e14511..df1a5227f05bfee331569e3f3a65133c055787b6 100644 (file)
@@ -74,7 +74,7 @@
           <tr>
             <th style="small-2">#</th>
             <th style="small-7">Nick</th>
-            <th style="small-3">Playing Time</th>
+            <th style="small-3">Play Time</th>
           </tr>
         </thead>
         <tbody>
@@ -85,7 +85,7 @@
             % if player_id != '-':
               <td class="no-stretch"><a href="${request.route_url('player_info', id=player_id)}" title="Go to the player info page for this player">${nick|n}</a></td>
             % else:
-              <td class="nostretch">${nick}</td>
+              <td class="no-stretch">${nick}</td>
             % endif
             <td>${alivetime}</td>
           </tr>
           <tbody>
             % for rg in recent_games:
             <tr>
-              <td class="text-center"><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="text-center"><a class="tiny button" href="${request.route_url('game_info', id=rg.game_id)}" title="View detailed information about this game">View</a></td>
               <td class="text-center"><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.start_dt.strftime('%a, %d %b %Y %H:%M:%S UTC')}">${rg.fuzzy_date}</span></td>