]> git.llucax.com Git - software/sercom.git/commitdiff
Agregar link para ver todo cuando se estaba viendo un listado parcial.
authorLeandro Lucarella <llucax@gmail.com>
Fri, 16 Feb 2007 00:40:45 +0000 (00:40 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Fri, 16 Feb 2007 00:40:45 +0000 (00:40 +0000)
sercom/subcontrollers/caso_de_prueba/__init__.py
sercom/subcontrollers/caso_de_prueba/templates/list.kid
sercom/subcontrollers/enunciado/__init__.py
sercom/subcontrollers/enunciado/templates/list.kid

index 6bf332f5c394b6cf55ce4ebb62aa95f9d5e0ebf4..ad62b05af84c8e8d0e2feec7dbb0a0e25430a7d6 100644 (file)
@@ -82,7 +82,7 @@ class CasoDePruebaController(controllers.Controller, identity.SecureResource):
             r = cls.select()
         else:
             r = cls.selectBy(enunciadoID=enunciado)
             r = cls.select()
         else:
             r = cls.selectBy(enunciadoID=enunciado)
-        return dict(records=r, name=name, namepl=namepl)
+        return dict(records=r, name=name, namepl=namepl, parcial=enunciado)
 
     @expose(template='kid:%s.templates.new' % __name__)
     def new(self, **kw):
 
     @expose(template='kid:%s.templates.new' % __name__)
     def new(self, **kw):
index 576872fc90b64bfc5b12e6b19a519c092823025e..79de04645290520669bfa913cee026909250e7ba 100644 (file)
@@ -33,6 +33,7 @@
 
 <br/>
 <a href="${tg.url('/caso_de_prueba/new')}">Agregar</a>
 
 <br/>
 <a href="${tg.url('/caso_de_prueba/new')}">Agregar</a>
+<a py:if="parcial" href="${tg.url('/caso_de_prueba/list')}">Ver todo</a>
 
 <div py:for="page in tg.paginate.pages">
     <a py:if="page != tg.paginate.current_page"
 
 <div py:for="page in tg.paginate.pages">
     <a py:if="page != tg.paginate.current_page"
index d953ba21c914823949b68217f5651b9289030cc4..86bc1f84d6937acf80dc9c4b8bfb8798d0031b7d 100644 (file)
@@ -77,7 +77,7 @@ class EnunciadoController(controllers.Controller, identity.SecureResource):
             r = cls.select()
         else:
             r = cls.selectBy(autorID=autor)
             r = cls.select()
         else:
             r = cls.selectBy(autorID=autor)
-        return dict(records=r, name=name, namepl=namepl)
+        return dict(records=r, name=name, namepl=namepl, parcial=autor)
 
     @expose(template='kid:%s.templates.new' % __name__)
     def new(self, **kw):
 
     @expose(template='kid:%s.templates.new' % __name__)
     def new(self, **kw):
index 8558dbaac695299a80376d3330cb31159ce98ea5..9e01961e57bbb1605e6271a369be0d0e36ae5a7e 100644 (file)
@@ -33,6 +33,7 @@
 
 <br/>
 <a href="${tg.url('/enunciado/new')}">Agregar</a>
 
 <br/>
 <a href="${tg.url('/enunciado/new')}">Agregar</a>
+<a py:if="parcial" href="${tg.url('/enunciado/list')}">Ver todo</a>
 
 <div py:for="page in tg.paginate.pages">
     <a py:if="page != tg.paginate.current_page"
 
 <div py:for="page in tg.paginate.pages">
     <a py:if="page != tg.paginate.current_page"