]> git.llucax.com Git - software/sercom.git/commitdiff
Activa y desactiva docentes de forma más amistosa.
authorLeandro Lucarella <llucax@gmail.com>
Wed, 31 Jan 2007 18:28:14 +0000 (18:28 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 31 Jan 2007 18:28:14 +0000 (18:28 +0000)
sercom/subcontrollers/docente/__init__.py
sercom/subcontrollers/docente/templates/list.kid

index c410e4d7fd72578c41d800de7dba96f558fd7292..e4070810738cdee9ed701c8e21a6285edf40c2ea 100644 (file)
@@ -60,6 +60,13 @@ class DocenteController(controllers.Controller, identity.SecureResource):
 
         return dict(records=r, name=name, namepl=namepl, tg_flash=f)
 
+    @expose()
+    def activate(self, id, activo):
+        """Save or create record to model"""
+        cls.get(int(id)).activo = int(activo)
+
+        raise redirect('../list')
+
     @expose(template='kid:sercom.subcontrollers.%s.templates.new' % name)
     def new(self, **kw):
         """Create new records in model"""
index 3ae06da128d20201039752ca2c2ecbf89bc0817b..c6069491e185bc5fc6576e6f2f096614f19f8d96 100644 (file)
 
 <table>
     <tr>
+        <th title="Activo">A</th>
         <th>Usuario</th>
         <th>Nombre</th>
         <th>E-Mail</th>
         <th>Teléfono</th>
         <th>Nombrado</th>
-        <th>Activo</th>
         <th>Observaciones</th>
         <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
-        <td><span py:replace="record.usuario">usuario</span></td>
+        <td><input type="checkbox" onclick="var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = '${tg.url('activate/'+str(record.id), activo=str(int(not record.activo)))}'; f.submit(); return false;" py:attrs="checked=tg.checker(record.activo)" /></td>
+        <td><a href="show/${record.id}"><span py:replace="record.usuario">usuario</span></a></td>
         <td><span py:replace="record.nombre">nombre</span></td>
-        <td><span py:replace="record.email">email</span></td>
-        <td><span py:replace="resume(record.telefono, 10)">telefono</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><span py:replace="record.nombrado">nombrado</span></td>
-        <td><span py:replace="record.activo">activo</span></td>
-        <td><span py:replace="resume(record.observaciones, 20)">observaciones</span></td>
-        <td><a href="show/${record.id}">Ver</a>
-            <a href="edit/${record.id}">Editar</a>
+        <td><span py:replace="tg.summarize(record.observaciones, 20)">observaciones</span></td>
+        <td><a href="edit/${record.id}">Editar</a>
             <a href="delete/${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>
@@ -45,3 +44,5 @@
 
 </body>
 </html>
+
+<!-- vim: set et sw=4 sts=4 : -->