]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/curso/alumno/__init__.py
Permitir pasar el el archivo de configuración por línea de comandos al tester.
[software/sercom.git] / sercom / subcontrollers / curso / alumno / __init__.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
2
3 #{{{ Imports
4 import cherrypy
5 from turbogears import controllers, expose, redirect
6 from turbogears import validate, flash, error_handler
7 from turbogears import validators as V
8 from turbogears import widgets as W
9 from turbogears import identity
10 from turbogears import paginate
11 from docutils.core import publish_parts
12 from sercom.subcontrollers import validate as val
13 from sercom.model import AlumnoInscripto, Correccion, Curso, Ejercicio, InstanciaDeEntrega
14 from sqlobject import *
15
16 #}}}
17
18 #{{{ Configuración
19 cls = AlumnoInscripto
20 name = 'alumno inscripto'
21 namepl = 'alumnos inscriptos'
22 #}}}
23
24 #{{{ Validación
25 def validate_get(id):
26     return val.validate_get(cls, name, id)
27
28 def validate_set(id, data):
29     return val.validate_set(cls, name, id, data)
30
31 def validate_new(data):
32     return val.validate_new(cls, name, data)
33 #}}}
34
35 #{{{ Formulario
36 class AlumnoInscriptoForm(W.TableForm):
37     class Fields(W.WidgetsList):
38         nota_practica = W.TextField(label=_(u'Nota Práctica'), validator=V.Number(not_empty=True, strip=True))
39         nota_final = W.TextField(label=_(u'Nota Final'), validator=V.Number(not_empty=True, strip=True))
40         nota_libreta = W.TextField(label=_(u'Nota Libreta'), validator=V.Number(not_empty=True, strip=True))
41     fields = Fields()
42     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_nota_practica');")]
43
44 def get_cursos():
45     return [(0, u'---')] + [(fk1.id, fk1.shortrepr()) for fk1 in Curso.select()]
46
47 form = AlumnoInscriptoForm()
48 #}}}
49
50 #{{{ Controlador
51 class AlumnoInscriptoController(controllers.Controller, identity.SecureResource):
52     """Basic model admin interface"""
53     require = identity.has_permission('admin')
54
55     @expose()
56     def default(self, tg_errors=None):
57         """handle non exist urls"""
58         raise redirect('list')
59
60     @expose()
61     def index(self):
62         raise redirect('list')
63
64     @expose(template='kid:%s.templates.list' % __name__)
65     @paginate('records')
66     def list(self, cursoID = 0):
67         """List records in model"""
68         cursoID = int(cursoID)
69         if cursoID == 0:
70             raise redirect('..')
71         else:
72             r = cls.select(cls.q.cursoID == cursoID)
73         curso = Curso.get(cursoID)
74         return dict(records=r, name=name, namepl=namepl, curso=curso)
75
76     @expose(template='kid:%s.templates.notas' % __name__)
77     def notas(self, id, cursoID, **kw):
78         """Edit record in model"""
79         cursoID = int(cursoID)
80         r = validate_get(id)
81         return dict(name=name, namepl=namepl, record=r, form=form, cursoid=cursoID)
82
83     @validate(form=form)
84     @error_handler(notas)
85     @expose()
86     def update(self, id, cursoID, **kw):
87         """Save or create record to model"""
88         cursoID = int(cursoID)
89         r = validate_set(id, kw)
90         flash(_(u'El %s fue actualizado.') % name)
91         raise redirect('../list/%d' % cursoID)
92
93     @expose(template='kid:%s.templates.show' % __name__)
94     def show(self,id, **kw):
95         """Show record in model"""
96         r = validate_get(id)
97         return dict(name=name, namepl=namepl, record=r)
98
99 #}}}
100