]> git.llucax.com Git - software/sercom.git/commitdiff
mas cambio de pc
authorRicardo Markieicz <rmarkie@fi.uba.ar>
Sun, 25 Feb 2007 22:39:57 +0000 (22:39 +0000)
committerRicardo Markieicz <rmarkie@fi.uba.ar>
Sun, 25 Feb 2007 22:39:57 +0000 (22:39 +0000)
sercom/subcontrollers/docente_inscripto/__init__.py [new file with mode: 0644]
sercom/subcontrollers/docente_inscripto/templates/__init__.py [new file with mode: 0644]
sercom/subcontrollers/docente_inscripto/templates/edit.kid [new file with mode: 0644]
sercom/subcontrollers/docente_inscripto/templates/list.kid [new file with mode: 0644]
sercom/subcontrollers/docente_inscripto/templates/new.kid [new file with mode: 0644]
sercom/subcontrollers/docente_inscripto/templates/show.kid [new file with mode: 0644]

diff --git a/sercom/subcontrollers/docente_inscripto/__init__.py b/sercom/subcontrollers/docente_inscripto/__init__.py
new file mode 100644 (file)
index 0000000..bd19a6e
--- /dev/null
@@ -0,0 +1,124 @@
+# 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 DocenteInscripto
+#}}}
+
+#{{{ Configuración
+cls = DocenteInscripto
+name = 'Docente Inscripto'
+namepl = 'Docentes Inscriptos'
+#}}}
+
+#{{{ 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 DocenteInscriptoForm(W.TableForm):
+    class Fields(W.WidgetsList):
+       curso = W.SingleSelectField(label=_(u'Curso'),
+            help_text=_(u'Requerido'),
+       docente = W.SingleSelectField(label=_(u'Docente'),
+            help_text=_(u'Requerido'),
+       corrige = W.CheckBoxField(label=_(u'Corrige'), options=[(1='Corrige')],
+            help_text=_(u'Requerido.'),
+            validator=V.Number(min=1, max=1, strip=True))
+       observaciones = W.TextArea(name='observaciones', label=_(u'Observaciones'),
+            help_text=_(u'Observaciones'),
+            validator=V.UnicodeString(not_empty=False, strip=True))
+       #alumnos = W.MultipleSelectField(name="alumnos", label=_(u'Alumnos'),
+       #    help_text=_(u'Alumnos del DocenteInscripto'),
+       #    validator=V.UnicodeString(not_empty=True))
+    fields = Fields()
+    javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('curso');")]
+form = DocenteInscriptoForm()
+#}}}
+
+#{{{ Controlador
+class DocenteInscriptoController(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)
+        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)
+        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/docente_inscripto/templates/__init__.py b/sercom/subcontrollers/docente_inscripto/templates/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/sercom/subcontrollers/docente_inscripto/templates/edit.kid b/sercom/subcontrollers/docente_inscripto/templates/edit.kid
new file mode 100644 (file)
index 0000000..7b50a66
--- /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('/curso/update/%d' % record.id),
+       submit_text=_(u'Guardar'))">Formulario</div>
+
+<br/>
+<a href="${tg.url('/curso/show/%d' % record.id)}">Ver (cancela)</a> |
+<a href="${tg.url('/curso/list')}">Volver (cancela)</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/docente_inscripto/templates/list.kid b/sercom/subcontrollers/docente_inscripto/templates/list.kid
new file mode 100644 (file)
index 0000000..b862349
--- /dev/null
@@ -0,0 +1,48 @@
+<!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>Curso</th>
+        <th>Docente</th>
+        <th>Corrige</th>
+        <th>Observaciones</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('/curso/show/%d' % record.id)}"><span
+                    py:replace="record.curso">curso</span></a></td>
+        <td><span py:replace="record.docente">docente</span></td>
+        <td><span py:replace="record.corrige">corrige</span></td>
+        <td><span py:replace="record.observaciones">observaciones</span></td>
+        <td><a href="${tg.url('/docente_inscripto/edit/%d' % record.id)}">Editar</a>
+            <a href="${tg.url('/docente_inscripto/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('/docente_inscripto/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/docente_inscripto/templates/new.kid b/sercom/subcontrollers/docente_inscripto/templates/new.kid
new file mode 100644 (file)
index 0000000..2c0fc96
--- /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('/doocente_inscripto/create'), value=values, submit_text=_('Crear'))">Formulario</p>
+
+<br/>
+<a href="${tg.url('/docente_inscripto/list')}">Cancelar</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/docente_inscripto/templates/show.kid b/sercom/subcontrollers/docente_inscripto/templates/show.kid
new file mode 100644 (file)
index 0000000..c8b3049
--- /dev/null
@@ -0,0 +1,35 @@
+<!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>Curso:</th>
+        <td><span py:replace="record.curso">curso</span></td>
+    </tr>
+    <tr>
+        <th>Docente:</th>
+       <td><span py:replace="record.docente">docente</span></td>
+    </tr>
+    <tr>
+        <th>Corrige:</th>
+       <td><span py::replace="record.numero">numero</span></td>
+    </tr>
+    <tr>
+        <th>Descripcion:</th>
+                               <td><span py:if="record.corrige">SI</span></td>
+                               <td><span py:if="not record.corrige">NO</span></td>
+    </tr>
+</table>
+
+<br/>
+<a href="${tg.url('/docente_inscripto/edit/%d' % record.id)}">Editar</a> |
+<a href="${tg.url('/docente_inscripto/list')}">Volver</a>
+
+</body>
+</html>