]> git.llucax.com Git - software/sercom.git/commitdiff
Mejorar listado de alumnos.
authorLeandro Lucarella <llucax@gmail.com>
Fri, 16 Mar 2007 15:48:40 +0000 (15:48 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Fri, 16 Mar 2007 15:48:40 +0000 (15:48 +0000)
sercom/subcontrollers/alumno/templates/list.kid
sercom/subcontrollers/curso/alumno/templates/list.kid

index 0afdddfea7d9c3f638c7e5e249d9a32e88f7bf6d..4c063c3790a71ebb384a027860d48de7948b4bde 100644 (file)
@@ -17,8 +17,6 @@
         <th>E-Mail</th>
         <th>Teléfono</th>
         <th>Nota</th>
-        <th>Observaciones</th>
-        <!--th>Enunciados</th-->
         <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
             document.createElement('form'); this.parentNode.appendChild(f);
             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('/alumno/show/%d' % record.id)}"><span py:replace="record.usuario">usuario</span></a></td>
+        <td><span py:replace="record.usuario">usuario</span></td>
         <td><span py:replace="record.nombre">nombre</span></td>
-        <td><a py:if="record.email" href="mailto:${record.email}"><span py:replace="record.email">email</span></a></td>
-        <td><span py:replace="tg.summarize(record.telefono, 10)">telefono</span></td>
+        <td><a py:if="record.email" href="mailto:${record.email}"><span py:replace="tg.summarize(record.email, 30)">email</span></a></td>
+        <td><span py:replace="tg.summarize(record.telefono, 12)">telefono</span></td>
         <td><span py:replace="record.nota">nota</span></td>
-        <td><span py:replace="tg.summarize(record.observaciones, 20)">observaciones</span></td>
-        <!--td><a py:if="len(record.enunciados)" href="${tg.url('/enunciado/list', autor=record.id)}"><span
-                    py:replace="len(record.enunciados)">cant</span></a></td-->
-        <td><a href="${tg.url('/alumno/edit/%d' % record.id)}">Editar</a>
+        <td><a href="${tg.url('/alumno/show/%d' % record.id)}">Ver</a>
+            <a href="${tg.url('/alumno/edit/%d' % record.id)}">Editar</a>
             <a href="${tg.url('/alumno/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>
index 73f1f997a4955aa0ed9fbb6b7615ea31635d78cc..ff10ed2e4f8bdae46c6838e70a93dd2b74d5b8b4 100644 (file)
 
 <table class="list">
     <tr>
-                               <th>Curso</th>
+        <th>Curso</th>
         <th>Alumno</th>
         <th>Condicional?</th>
         <th>Tutor</th>
-                               <th>Operaciones</th>
+        <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
-                               <td><a href="${tg.url('/curso/show/%d' % record.curso.id)}" py:content="record.curso.shortrepr()">curso</a></td>
+        <td><a href="${tg.url('/curso/show/%d' % record.curso.id)}" py:content="record.curso.shortrepr()">curso</a></td>
         <td><a href="${tg.url('/curso/alumno/show/%d' % record.alumno.id)}" py:content="record.alumno.shortrepr()">alumno</a></td>
         <td><span py:replace="record.condicional">fecha corregido</span></td>
         <td><a py:if="record.tutor" href="${tg.url('/docente/show/%d' % record.tutor.id)}" py:content="record.tutor.shortrepr()">Tutor</a></td>
-                               <td>
-                                       <a href="${tg.url('/curso/alumno/notas/%d/%d' % (record.id, cursoid))}">Notas</a>
-                               </td>
+        <td>
+            <a href="${tg.url('/curso/alumno/notas/%d/%d' % (record.id, cursoid))}">Notas</a>
+        </td>
     </tr>
 </table>