]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/ejercicio/templates/list.kid
AjaxMultiSelect widget generico.
[software/sercom.git] / sercom / subcontrollers / ejercicio / templates / list.kid
index 5b19f78cbc8f461fa19e22897980f0145cf5f095..25ee50dea9c56ce9e97a11f643e7861c1599c45c 100644 (file)
@@ -9,7 +9,7 @@
 
 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
 
-<table>
+<table class="list">
     <tr>
         <th>Curso</th>
         <th>Numero</th>
@@ -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('/ejercicio/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>