]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/subcontrollers/docente/templates/list.kid
Permitir pasar el el archivo de configuración por línea de comandos al tester.
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / docente / templates / list.kid
index 2ec9e22418d11f160bc41513671b8b2a9160de95..6c3709fa7df84aa83bfaaa1b6d61993529323a82 100644 (file)
@@ -9,7 +9,7 @@
 
 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
 
-<table>
+<table class="list">
     <tr>
         <th title="Activo">A</th>
         <th>Usuario</th>
 
 <br/>
 <a href="${tg.url('/docente/new')}">Agregar</a>
+<br/>
 
-<div py:for="page in tg.paginate.pages">
+<div py:if="len(tg.paginate.pages) > 1">
+  Más:
+  <div py:for="page in tg.paginate.pages" py:strip="True">
     <a py:if="page != tg.paginate.current_page"
         href="${tg.paginate.get_href(page)}">${page}</a>
     <b py:if="page == tg.paginate.current_page">${page}</b>
+  </div>
 </div>
 
 </body>