]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/ejercicio/templates/list.kid
Un poco de CSS a las tablas.
[software/sercom.git] / sercom / subcontrollers / ejercicio / templates / list.kid
index 5b19f78cbc8f461fa19e22897980f0145cf5f095..035542a06dd07b4c867eeeccb2ad7cb1af43cdab 100644 (file)
@@ -18,7 +18,7 @@
         <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
-        <td><a href="${tg.url('/ejercicio/show/%d' % record.id)}"><span py:replace="record.curso.shortrepr()">curso</span></a></td>
+        <td><a href="${tg.url('/curso/show/%d' % record.id)}"><span py:replace="record.curso.shortrepr()">curso</span></a></td>
         <td><span py:replace="record.numero">numero</span></td>
         <td><a py:if="record.enunciadoID is not None"
                 href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}"><span
@@ -27,6 +27,7 @@
             <span py:replace="record.grupal">grupal</span>
         </td>
         <td>
+            <a href="${tg.url('/entrega/%d' % record.id)}">Entregas</a>
             <a href="${tg.url('/ejercicio/edit/%d' % record.id)}">Editar</a>
             <a href="${tg.url('/ejercicio/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>