]> git.llucax.com Git - software/sercom.git/commitdiff
Enlace de Volver desde Entregas a Ejercicio.
authorRicardo Markiewicz <rmarkie@fi.uba.ar>
Sat, 17 Mar 2007 20:41:12 +0000 (20:41 +0000)
committerRicardo Markiewicz <rmarkie@fi.uba.ar>
Sat, 17 Mar 2007 20:41:12 +0000 (20:41 +0000)
sercom/subcontrollers/curso/ejercicio/instancia/__init__.py
sercom/subcontrollers/curso/ejercicio/instancia/templates/entregas.kid

index ed4102f2fd6bd5f4f102cdd9dd481dd08d85f189..094311dbc404750305c0adfc7e0ebb6fba509053 100644 (file)
@@ -136,6 +136,6 @@ class InstanciaController(controllers.Controller, identity.SecureResource):
     def entregas(self,instanciaid, **kw):
         """Show record in model"""
         r = validate_get(instanciaid)
     def entregas(self,instanciaid, **kw):
         """Show record in model"""
         r = validate_get(instanciaid)
-        return dict(name=name, namepl=namepl, record=r)
+        return dict(name=name, namepl=namepl, instancia=r)
 #}}}
 
 #}}}
 
index bf5e2b499046b3c4b3776d24ff315deb7d89cd4d..cd6316abd555c3c02c10510fba07becf16bec9d7 100644 (file)
@@ -8,7 +8,7 @@
 </head>
 <body>
 
 </head>
 <body>
 
-<h1>Entregas para la Instancia de Entrega <span py:replace="record.shortrepr()">Objetos</span></h1>
+<h1>Entregas para la Instancia de Entrega <span py:replace="instancia.shortrepr()">Objetos</span></h1>
 
 <table class="list">
     <tr>
 
 <table class="list">
     <tr>
@@ -19,7 +19,7 @@
         <th>Observaciones</th>
                                <th>Operaciones</th>
     </tr>
         <th>Observaciones</th>
                                <th>Operaciones</th>
     </tr>
-    <tr py:for="record in record.entregas">
+    <tr py:for="record in instancia.entregas">
         <td><span py:if="record.entregador" py:replace="record.entregador.shortrepr()">usuario</span></td>
         <td><span py:replace="record.exito">fecha asignado</span></td>
         <td><span py:replace="record.inicio">fecha corregido</span></td>
         <td><span py:if="record.entregador" py:replace="record.entregador.shortrepr()">usuario</span></td>
         <td><span py:replace="record.exito">fecha asignado</span></td>
         <td><span py:replace="record.inicio">fecha corregido</span></td>
@@ -32,6 +32,9 @@
     </tr>
 </table>
 
     </tr>
 </table>
 
+<br/>
+<a href="${tg.url('/curso/ejercicio/instancia/list/%s' % instancia.ejercicio.id)}">Volver</a>
+
 </body>
 </html>
 
 </body>
 </html>