]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/subcontrollers/enunciado/templates/list.kid
agrego hint en el editar
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / enunciado / templates / list.kid
index f33a8544a840fe9faff49ffa33a9bb05e008d974..12991f7e93d700457f0aef492a654a58f2b86425 100644 (file)
@@ -9,26 +9,38 @@
 
 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
 
-<table>
+<table class="list">
     <tr>
+        <th>Cuatrimestre</th>
+        <th>Año</th>
         <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">
-        <td><a href="show/${record.id}"><span py:replace="record.nombre">nombre</span></a></td>
+               <tr py:for="record in records">
+        <td><span py:replace="record.cuatrimestre">descripción</span></td>
+        <td><span py:replace="record.anio">descripción</span></td>
+        <td><a href="${tg.url('/enunciado/show/%d' % record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
         <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
         <td><a py:if="record.autorID is not None"
-                href="../docente/show/${record.autor.id}"><span
+                href="${tg.url('/docente/show/%d' % record.autor.id)}"><span
                     py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span></a></td>
-        <td><a href="edit/${record.id}">Editar</a>
-            <a href="delete/${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>
+        <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>
+            <a py:if="record.archivo" href="${tg.url('/enunciado/files/%d' % record.id)}">Bajar Enunciado</a>
+        </td>
     </tr>
 </table>
 
 <br/>
-<a href="new">Agregar</a>
+<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"