]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/model.py
Atributo especial en Controllers para poder ocultar entradas del menu para Admin.
[z.facultad/75.52/sercom.git] / sercom / model.py
index 6bc54358ed5fd58d5f1a749c3a974f21bd96abe3..2a7f472605b143731cee85de031dbe23a22e73e2 100644 (file)
@@ -403,7 +403,7 @@ class ComandoPrueba(Comando): #{{{
     pk                  = DatabaseIndex(tarea, orden, unique=True)
 
     def __repr__(self):
-        return super(ComandoFuente, self).__repr__('tarea=%s, orden=%s'
+        return super(ComandoPrueba, self).__repr__('tarea=%s, orden=%s'
             % (self.tarea.shortrepr(), self.orden))
 
     def shortrepr(self):
@@ -830,7 +830,7 @@ class ComandoFuenteEjecutado(ComandoEjecutado): #{{{
                 self.entrega.shortrepr()))
 
     def shortrepr(self):
-        return '%s-%s' % (self.tarea.shortrepr(), self.entrega.shortrepr())
+        return '%s-%s' % (self.comando.shortrepr(), self.entrega.shortrepr())
 #}}}
 
 class ComandoPruebaEjecutado(ComandoEjecutado): #{{{