]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/curso/templates/list.kid
Muestro ultimas entregas y fix al uso de Zipfile
[software/sercom.git] / sercom / subcontrollers / curso / templates / list.kid
index db936ce6628069a087de63f330ed566a1e772766..2634178f9bb3e18aeeefa5e51f7f28c22a3cef54 100644 (file)
@@ -9,7 +9,7 @@
 
 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
 
-<table>
+<table class="list">
     <tr>
         <th>Numero</th>
         <th>Cuatrimestre</th>
@@ -18,8 +18,8 @@
         <th>Docentes</th>
         <th>Alumnos</th>
         <th>Grupos</th>
-                               <th>Ejercicios</th>
-                               <th>Operaciones</th>
+               <th>Ejercicios</th>
+               <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
         <!--td><input type="checkbox" onclick="var f =
@@ -27,8 +27,7 @@
             f.method = 'POST'; f.action = '${tg.url('/alumno/activate/%d/%d' % (record.id, int(not record.activo)))}';
             f.submit(); return false;"
             py:attrs="checked=tg.checker(record.activo)" /></td-->
-        <td><a href="${tg.url('/curso/show/%d' % record.id)}"><span
-                    py:replace="record.numero">numero</span></a></td>
+        <td><a href="${tg.url('/curso/show/%d' % record.id)}"><span py:replace="record.numero">numero</span></a></td>
         <td><span py:replace="record.cuatrimestre">cuatrimestre</span></td>
         <td><span py:replace="record.anio">anio</span></td>
         <td><span py:replace="record.descripcion">descripcion</span></td>
@@ -36,7 +35,8 @@
         <td><a py:if="len(record.alumnos)"  href="${tg.url('/alumno/list')}"><span py:replace="len(record.alumnos)">Alumnos</span></a></td>
         <td><a py:if="len(record.grupos)"  href="${tg.url('/grupo/list')}"><span py:replace="len(record.grupos)">Grupos</span></a></td>
         <td><a py:if="len(record.ejercicios)" href="${tg.url('/ejercicio/list')}"><span py:replace="len(record.ejercicios)">Ejercicio</span></a></td>
-        <td><a href="${tg.url('/curso/edit/%d' % record.id)}">Editar</a>
+        <td><a href="${tg.url('/curso/show/%d' % record.id)}">Ver</a>
+            <a href="${tg.url('/curso/edit/%d' % record.id)}">Editar</a>
             <a href="${tg.url('/curso/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
     </tr>
 </table>