From 6d00a5883955f81023d305d2157cab7fd78d5bdc Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Thu, 7 Apr 2005 00:26:31 +0000 Subject: [PATCH] Se cambia nombre de funcion de problematico a rechazado. --- src/sc_suwi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/sc_suwi b/src/sc_suwi index caf000e..bcb0e8c 100755 --- a/src/sc_suwi +++ b/src/sc_suwi @@ -328,7 +328,7 @@ def correcciones(req, entrega_id): ''' % (c.inscripto.padron, form(req, pruebas, input_pruebas(req, c.intento.id)), form(req, intentos, input_intentos(req, c.entrega.id, c.inscripto.id))) - def problematico_header(): + def rechazado_header(): return ''' @@ -340,9 +340,9 @@ def correcciones(req, entrega_id): ''' pass - def problematico_footer(): + def rechazado_footer(): return ' \n
Entregas rechazadas
\n' - def problematico_row(inscripto, entrega): + def rechazado_row(inscripto, entrega): intentos = int(Intento.selectBy(inscriptoID=inscripto.id, entregaID=entrega.id, connection=conn).count()) return ''' @@ -374,10 +374,10 @@ def correcciones(req, entrega_id): r += correccion_footer() inscriptos_ok = set([c.inscripto for c in correcciones]) inscriptos = set([i.inscripto for i in e.intentos]) - r += problematico_header() + r += rechazado_header() for i in inscriptos - inscriptos_ok: - r += problematico_row(i, e) - r += problematico_footer() + r += rechazado_row(i, e) + r += rechazado_footer() r += footer() return r -- 2.43.0