]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/tarea_fuente/templates/list.kid
agrego todos los enlaces que faltan para bajarse los archivos de Comando e hijos.
[software/sercom.git] / sercom / subcontrollers / tarea_fuente / templates / list.kid
index 041a8b02efc71eaf299b5f215671f8f0df2fdcc2..942bf8195670a2738d6a9217f63dd5ac2560eb15 100644 (file)
         <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
-        <td><span py:replace="record.nombre">nombre</span></td>
+                               <td><a href="${tg.url('/tarea_fuente/show/%d' % record.id)}" py:content="record.nombre"></a></td>
         <td><span py:replace="record.descripcion">nota</span></td>
-        <td><a href="${tg.url('/tarea_fuente/edit/%d' % record.id)}">Editar</a>
+        <td>
+            <a href="${tg.url('/tarea_fuente/comandos/list/%d' % record.id)}">Comandos</a>
+            <a href="${tg.url('/tarea_fuente/edit/%d' % record.id)}">Editar</a>
             <a href="${tg.url('/tarea_fuente/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { 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>