]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
Agregar controlador para Alumno.
authorLeandro Lucarella <llucax@gmail.com>
Wed, 21 Feb 2007 04:14:10 +0000 (04:14 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 21 Feb 2007 04:14:10 +0000 (04:14 +0000)
sercom/controllers.py
sercom/subcontrollers/__init__.py
sercom/subcontrollers/alumno/__init__.py [new file with mode: 0644]
sercom/subcontrollers/alumno/templates/__init__.py [new file with mode: 0644]
sercom/subcontrollers/alumno/templates/edit.kid [new file with mode: 0644]
sercom/subcontrollers/alumno/templates/list.kid [new file with mode: 0644]
sercom/subcontrollers/alumno/templates/new.kid [new file with mode: 0644]
sercom/subcontrollers/alumno/templates/show.kid [new file with mode: 0644]

index 186fe510d9323cadf247d8013d33bf6785871073..a69af2e5db25e88ca779e46fbdc6a1cd7ee348b7 100644 (file)
@@ -79,6 +79,8 @@ class Root(controllers.RootController):
 
     docente = DocenteController()
 
+    alumno = AlumnoController()
+
     enunciado = EnunciadoController()
 
     caso_de_prueba = CasoDePruebaController()
index 0ddaf86aeaa45816b5a3cbc3226267d5023f0b6e..b52aa3fe72301ebebb18802a8785a6972b2ef795 100644 (file)
@@ -1,3 +1,4 @@
 from docente import DocenteController
+from alumno import AlumnoController
 from enunciado import EnunciadoController
 from caso_de_prueba import CasoDePruebaController
diff --git a/sercom/subcontrollers/alumno/__init__.py b/sercom/subcontrollers/alumno/__init__.py
new file mode 100644 (file)
index 0000000..e54459c
--- /dev/null
@@ -0,0 +1,146 @@
+# vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
+
+#{{{ Imports
+import cherrypy
+from turbogears import controllers, expose, redirect
+from turbogears import validate, flash, error_handler
+from turbogears import validators as V
+from turbogears import widgets as W
+from turbogears import identity
+from turbogears import paginate
+from docutils.core import publish_parts
+from sercom.subcontrollers import validate as val
+from sercom.model import Alumno
+#}}}
+
+#{{{ Configuración
+cls = Alumno
+name = 'alumno'
+namepl = name + 's'
+#}}}
+
+#{{{ Validación
+def validate_get(id):
+    return val.validate_get(cls, name, id)
+
+def validate_set(id, data):
+    return val.validate_set(cls, name, id, data)
+
+def validate_new(data):
+    return val.validate_new(cls, name, data)
+#}}}
+
+#{{{ Formulario
+class AlumnoForm(W.TableForm):
+    fields = [
+        W.TextField(name='padron', label=_(u'Padrón'),
+            help_text=_(u'Requerido y único.'),
+            validator=V.UnicodeString(min=3, max=10, strip=True)),
+        W.TextField(name='nombre', label=_(u'Nombre'),
+            help_text=_(u'Requerido.'),
+            validator=V.UnicodeString(min=10, max=255, strip=True)),
+        W.TextField(name='email', label=_(u'E-Mail'),
+            #help_text=_(u'Dirección de e-mail.'),
+            validator=V.All(
+                V.Email(not_empty=False, resolve_domain=True),
+                V.UnicodeString(not_empty=False, max=255, strip=True))),
+        W.TextField(name='telefono', label=_(u'Teléfono'),
+            #help_text=_(u'Texto libre para teléfono, se puede incluir '
+            #    'horarios o varias entradas.'),
+            validator=V.UnicodeString(not_empty=False, min=7, max=255,
+                strip=True)),
+        W.TextField(name='nota', label=_(u'Nota'),
+            #help_text=_(u'Texto libre para teléfono, se puede incluir '
+            #    'horarios o varias entradas.'),
+            validator=V.Number(not_empty=False, strip=True)),
+        W.TextArea(name='observaciones', label=_(u'Observaciones'),
+            #help_text=_(u'Observaciones.'),
+            validator=V.UnicodeString(not_empty=False, strip=True)),
+        W.CheckBox(name='activo', label=_(u'Activo'), default=1,
+            #help_text=_(u'Si no está activo no puede ingresar al sistema.'),
+            validator=V.Bool(if_empty=1)),
+    ]
+    javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_padron');")]
+
+form = AlumnoForm()
+#}}}
+
+#{{{ Controlador
+class AlumnoController(controllers.Controller, identity.SecureResource):
+    """Basic model admin interface"""
+    require = identity.has_permission('admin')
+
+    @expose()
+    def default(self, tg_errors=None):
+        """handle non exist urls"""
+        raise redirect('list')
+
+    @expose()
+    def index(self):
+        raise redirect('list')
+
+    @expose(template='kid:%s.templates.list' % __name__)
+    @paginate('records')
+    def list(self):
+        """List records in model"""
+        r = cls.select()
+        return dict(records=r, name=name, namepl=namepl)
+
+    @expose()
+    def activate(self, id, activo):
+        """Save or create record to model"""
+        r = validate_get(id)
+        try:
+            r.activo = bool(int(activo))
+        except ValueError:
+            raise cherrypy.NotFound
+        raise redirect('../../list')
+
+    @expose(template='kid:%s.templates.new' % __name__)
+    def new(self, **kw):
+        """Create new records in model"""
+        return dict(name=name, namepl=namepl, form=form, values=kw)
+
+    @validate(form=form)
+    @error_handler(new)
+    @expose()
+    def create(self, **kw):
+        """Save or create record to model"""
+        validate_new(kw)
+        flash(_(u'Se creó un nuevo %s.') % name)
+        raise redirect('list')
+
+    @expose(template='kid:%s.templates.edit' % __name__)
+    def edit(self, id, **kw):
+        """Edit record in model"""
+        r = validate_get(id)
+        return dict(name=name, namepl=namepl, record=r, form=form)
+
+    @validate(form=form)
+    @error_handler(edit)
+    @expose()
+    def update(self, id, **kw):
+        """Save or create record to model"""
+        r = validate_set(id, kw)
+        flash(_(u'El %s fue actualizado.') % name)
+        raise redirect('../list')
+
+    @expose(template='kid:%s.templates.show' % __name__)
+    def show(self,id, **kw):
+        """Show record in model"""
+        r = validate_get(id)
+        if r.observaciones is None:
+            r.obs = ''
+        else:
+            r.obs = publish_parts(r.observaciones, writer_name='html')['html_body']
+        return dict(name=name, namepl=namepl, record=r)
+
+    @expose()
+    def delete(self, id):
+        """Destroy record in model"""
+        r = validate_get(id)
+        r.destroySelf()
+        flash(_(u'El %s fue eliminado permanentemente.') % name)
+        raise redirect('../list')
+#}}}
+
diff --git a/sercom/subcontrollers/alumno/templates/__init__.py b/sercom/subcontrollers/alumno/templates/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/sercom/subcontrollers/alumno/templates/edit.kid b/sercom/subcontrollers/alumno/templates/edit.kid
new file mode 100644 (file)
index 0000000..a0e29df
--- /dev/null
@@ -0,0 +1,20 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>edit</title>
+</head>
+<body>
+
+<h1>Modificación de <span py:replace="name">Objeto</span></h1>
+
+<div py:replace="form(value=record, action=tg.url('/alumno/update/%d' % record.id),
+       submit_text=_(u'Guardar'))">Formulario</div>
+
+<br/>
+<a href="${tg.url('/alumno/show/%d' % record.id)}">Ver (cancela)</a> |
+<a href="${tg.url('/alumno/list')}">Volver (cancela)</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/alumno/templates/list.kid b/sercom/subcontrollers/alumno/templates/list.kid
new file mode 100644 (file)
index 0000000..beaa958
--- /dev/null
@@ -0,0 +1,54 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>list</title>
+</head>
+<body>
+
+<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
+
+<table>
+    <tr>
+        <th title="Activo">A</th>
+        <th>Padrón</th>
+        <th>Nombre</th>
+        <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">
+        <td><input type="checkbox" onclick="var f =
+            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.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><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>
+            <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>
+
+<br/>
+<a href="${tg.url('/alumno/new')}">Agregar</a>
+
+<div py:for="page in tg.paginate.pages">
+    <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>
+
+</body>
+</html>
+
+<!-- vim: set et sw=4 sts=4 : -->
diff --git a/sercom/subcontrollers/alumno/templates/new.kid b/sercom/subcontrollers/alumno/templates/new.kid
new file mode 100644 (file)
index 0000000..c1eb8c3
--- /dev/null
@@ -0,0 +1,18 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>new</title>
+</head>
+<body>
+
+<h1>Crear Nuevo <span py:replace="name">Objeto</span></h1>
+
+<p py:replace="form(action=tg.url('/alumno/create'), value=values, submit_text=_('Crear'))">Formulario</p>
+
+<br/>
+<a href="${tg.url('/alumno/list')}">Cancelar</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/alumno/templates/show.kid b/sercom/subcontrollers/alumno/templates/show.kid
new file mode 100644 (file)
index 0000000..c69e796
--- /dev/null
@@ -0,0 +1,46 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>show</title>
+</head>
+<body>
+
+<table>
+    <tr>
+        <th>Padrón:</th>
+        <td><span py:replace="record.padron">padrón</span></td>
+    </tr>
+    <tr>
+        <th>Nombre:</th>
+       <td><span py:replace="record.nombre">nombre</span></td>
+    </tr>
+    <tr>
+        <th>E-Mail:</th>
+       <td><span py:replace="record.email">email</span></td>
+    </tr>
+    <tr>
+        <th>Teléfono:</th>
+       <td><span py:replace="record.telefono">telefono</span></td>
+    </tr>
+    <tr>
+        <th>Nota:</th>
+       <td><span py:replace="record.nota">nota</span></td>
+    </tr>
+    <tr>
+        <th>Activo:</th>
+       <td><span py:replace="record.activo">activo</span></td>
+    </tr>
+    <tr>
+        <th>Observaciones:</th>
+       <td><span py:replace="XML(record.obs)">observaciones</span></td>
+    </tr>
+</table>
+
+<br/>
+<a href="${tg.url('/alumno/edit/%d' % record.id)}">Editar</a> |
+<a href="${tg.url('/alumno/list')}">Volver</a>
+
+</body>
+</html>