]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/controllers.py
Modifico permisos en Enunciado y Ejercicio para que un Entregador pueda consultarlos.
[z.facultad/75.52/sercom.git] / sercom / controllers.py
index fe303b86506e94f82282ca70200be887e9c49fb4..893047876b7a723f9f8bbeb25a203f32579bf796 100644 (file)
@@ -55,8 +55,11 @@ class Root(controllers.RootController):
             # Ultimas N entregas realizadas
             # Grupos en los que el usuario formo parte
             m = [i.grupo.id for i in Grupo.selectByAlumno(identity.current.user)]
-            entregador = AlumnoInscripto.selectByAlumno(identity.current.user)
-            m.append(entregador.id)
+            try:
+                entregador = AlumnoInscripto.selectByAlumno(identity.current.user)
+                m.append(entregador.id)
+            except:
+                pass
             entregas = list(Entrega.select(IN(Entrega.q.entregadorID, m))[:5])
             return dict(instancias_activas=instancias, now=now, entregas=entregas)
         return dict()
@@ -130,6 +133,8 @@ class Root(controllers.RootController):
 
     mis_entregas = MisEntregasController()
 
+    mis_correcciones = MisCorreccionesController()
+
 #{{{ Agrega summarize a namespace tg de KID
 def summarize(text, size, concat=True, continuation='...'):
     """Summarize a string if it's length is greater than a specified size. This