]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
fix urls
authorRicardo Markiewicz <rmarkie@fi.uba.ar>
Mon, 26 Feb 2007 06:43:45 +0000 (06:43 +0000)
committerRicardo Markiewicz <rmarkie@fi.uba.ar>
Mon, 26 Feb 2007 06:43:45 +0000 (06:43 +0000)
sercom/subcontrollers/ejercicio/entrega/__init__.py
sercom/subcontrollers/ejercicio/entrega/templates/list.kid
sercom/subcontrollers/ejercicio/entrega/templates/new.kid

index 9159f73d9a6acd7ac4ae68ba1026675cacdd0f38..18e77b49732b81c349184644ed08f2836bff07e3 100644 (file)
@@ -98,7 +98,7 @@ class EntregaController(controllers.Controller, identity.SecureResource):
         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):
index c0ce791c2e9a0a5a84570cce91bc8b6dd855bc3d..f4bb28eb49054ac05deffa6c7f8254e90a8c3002 100644 (file)
         <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">
index 39629f351079b7513eb316ac6b4bb004aede0a69..ffa916cd14e00e66985fbc7b49ff6c90cd4ebfd4 100644 (file)
@@ -9,10 +9,10 @@
 
 <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>