]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/subcontrollers/enunciado/templates/list.kid
Usar folding.
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / enunciado / templates / list.kid
index 5bd5c2f6302442f77536172e8287c3223d33f91f..9e01961e57bbb1605e6271a369be0d0e36ae5a7e 100644 (file)
@@ -14,6 +14,7 @@
         <th>Nombre</th>
         <th>Descripción</th>
         <th>Autor</th>
+        <th title="Casos de Prueba">CP</th>
         <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
@@ -22,6 +23,9 @@
         <td><a py:if="record.autorID is not None"
                 href="${tg.url('/docente/show/%d' % record.autor.id)}"><span
                     py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span></a></td>
+        <td><a py:if="len(record.casos_de_prueba)"
+                href="${tg.url('/caso_de_prueba/list', enunciado=record.id)}"><span
+                    py:replace="len(record.casos_de_prueba)">cant</span></a></td>
         <td><a href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
             <a href="${tg.url('/enunciado/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>
@@ -29,6 +33,7 @@
 
 <br/>
 <a href="${tg.url('/enunciado/new')}">Agregar</a>
+<a py:if="parcial" href="${tg.url('/enunciado/list')}">Ver todo</a>
 
 <div py:for="page in tg.paginate.pages">
     <a py:if="page != tg.paginate.current_page"