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)
#}}}
</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>
<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>
</tr>
</table>
+<br/>
+<a href="${tg.url('/curso/ejercicio/instancia/list/%s' % instancia.ejercicio.id)}">Volver</a>
+
</body>
</html>