]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/subcontrollers/curso/templates/list.kid
muestro el nombre del enunciado
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / curso / templates / list.kid
index 52d7c1944eb1a415fa3f885124337c77f227604b..2634178f9bb3e18aeeefa5e51f7f28c22a3cef54 100644 (file)
@@ -9,17 +9,17 @@
 
 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
 
-<table>
+<table class="list">
     <tr>
-        <th>Anio</th>
-        <th>Cuatrimestre</th>
         <th>Numero</th>
+        <th>Cuatrimestre</th>
+        <th>Anio</th>
         <th>Descripcion</th>
         <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>