From a5e74d07c813bd39e77a5d3253dda1f19768f892 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sat, 2 Apr 2005 23:31:39 +0000 Subject: [PATCH] Se ordenan correcciones por padron. --- src/sc_suwi | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/sc_suwi b/src/sc_suwi index f35090d..a6b23bc 100755 --- a/src/sc_suwi +++ b/src/sc_suwi @@ -21,6 +21,10 @@ import cgitb; cgitb.enable() #XXX HORRIBLE PASSWD = conf.get('general', 'cgipw') +def cmp_correccion_padron(e1, e2): + 'Compara 2 entregas, según el padrón del alumno.' + return cmp(e1.inscripto.padron, e2.inscripto.padron) + def http_header_html(req): return 'Content-type: text/html\r\n\r\n' @@ -303,7 +307,9 @@ def correcciones(req, entrega_id): r = '

Entrega %d.%d del curso %d-%d-%d

\n' \ % (e.nroEjercicio, e.entrega, c.anio, c.cuatrimestre, c.curso) r += header() - for c in e.correcciones: + correcciones = list(e.correcciones) + correcciones.sort(cmp_correccion_padron) + for c in correcciones: r += row(c) r += footer() return r -- 2.43.0