e = Ejercicio.get(ejercicio_id)
e.add_instancia(**kw)
flash(_(u'Se creó un nuevo %s.') % name)
- raise redirect('/entrega/'+str(e.id))
+ raise redirect('/ejercicio/entrega/'+str(e.id))
@expose()
def delete(self, id):
<td><span py:replace="record.activo">activa</span></td>
<td><span py:replace="record.observaciones">obs</span></td>
<td>
- <a href="${tg.url('/entrega/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Yo creo que no...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a>
+ <a href="${tg.url('/ejercicio/entrega/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Yo creo que no...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a>
</td>
</tr>
</table>
<br/>
-<a href="${tg.url('/entrega/new/'+parcial)}">Agregar</a>
+<a href="${tg.url('/ejercicio/entrega/new/'+parcial)}">Agregar</a>
<a href="${tg.url('/ejercicio/list')}">Volver a Ejericicios</a>
<div py:for="page in tg.paginate.pages">
<h1>Crear Nuevo <span py:replace="name">Objeto</span></h1>
-<p py:replace="form(action=tg.url('/entrega/create'), value=values, submit_text=_('Crear'))">Formulario</p>
+<p py:replace="form(action=tg.url('/ejercicio/entrega/create'), value=values, submit_text=_('Crear'))">Formulario</p>
<br/>
-<a href="${tg.url('/entrega/list'+partial)}">Cancelar</a>
+<a href="${tg.url('/ejercicio/entrega/'+partial)}">Cancelar</a>
</body>
</html>