]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/templates/server_index.mako
Remove Persona since it was shut down. :(
[xonotic/xonstat.git] / xonstat / templates / server_index.mako
index fe3ce11918e3cef782afca2596de720541a86e25..9c47423e422e187e21ef7cd1ac66bc6896b28a45 100644 (file)
 
 % else:
   <div class="row">
-    <div class="small-8 small-offset-2 columns">
+    <div class="small-12 large-8 large-offset-2 columns">
 
       <form method="get" action="${request.route_url('search')}">
         <div class="row">
           <div class="small-7 columns">
-            <input type="hidden" name="server_name" />
-            <input type="text" name="nick" />
+            <input type="hidden" name="fs" />
+            <input type="text" name="server_name" />
           </div>
           <div class="small-5 columns">
             <input type="submit" value="search" />
       </form>
 
       <table class="table-hover table-condensed">
-        <tr>
-          <th class="small-3">Server ID</th>
-          <th class="small-5">Name</th>
-          <th class="small-3">Added</th>
-          <th class="small-1"></th>
-        </tr>
+        <thead>
+          <tr>
+            <th class="small-3">Server ID</th>
+            <th class="small-5">Name</th>
+            <th class="small-3">Added</th>
+            <th class="small-1"></th>
+          </tr>
+        </thead>
       % for server in servers:
         <tr>
           <td>${server.server_id}</td>
@@ -51,6 +53,7 @@
       </table>
 
       ${navlinks("server_index", servers.page, servers.last_page)}
+
     </div>
   </div>
 % endif