]> git.llucax.com Git - software/sercom.git/commitdiff
Mejorar listado de casos de prueba.
authorLeandro Lucarella <llucax@gmail.com>
Thu, 15 Mar 2007 18:57:28 +0000 (18:57 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 15 Mar 2007 18:57:28 +0000 (18:57 +0000)
sercom/subcontrollers/enunciado/caso_de_prueba/templates/list.kid

index 077b6c3cef3cb005f09e7b567f507698f210fa46..38c4d273d0ff3ea739f13b6cd52f0d02a862d6d2 100644 (file)
 <table class="list">
     <tr>
         <th>Nombre</th>
 <table class="list">
     <tr>
         <th>Nombre</th>
-        <th>Enunciado</th>
-        <th>Descripción</th>
-        <th>Parámetros</th>
+        <th>Comando</th>
         <th title="Código de retorno">RET</th>
         <th title="Código de retorno">RET</th>
-        <th title="Máximo tiempo de CPU">CPU</th>
+        <th title="Es público?">PUB</th>
         <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
         <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
-        <td><a href="${tg.url('/caso_de_prueba/show/%d'% record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
-        <td><a py:if="record.enunciadoID is not None"
-                href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}"><span
-                    py:replace="tg.summarize(record.enunciado.shortrepr(), 30)">enunciado</span></a></td>
-        <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
-        <td><span py:if="record.comando" py:replace="tg.summarize(record.comando, 30)">comando --con-parámetros</span></td>
+        <td><span py:replace="record.nombre">nombre</span></td>
+        <td><span py:if="record.comando" py:replace="record.comando">comando --con-parámetros</span></td>
         <td><span py:replace="record.retorno">retorno</span></td>
         <td><span py:replace="record.retorno">retorno</span></td>
-        <td><span py:replace="record.max_tiempo_cpu">máx tiempo de cpu</span></td>
-        <td><a href="${tg.url('/enunciado/caso_de_prueba/edit/%d' % record.id)}">Editar</a>
+        <td><span py:replace="tg.strbool(record.publico)">No</span></td>
+        <td>
+            <a href="${tg.url('/caso_de_prueba/show/%d'% record.id)}">Ver</a>
+            <a href="${tg.url('/enunciado/caso_de_prueba/edit/%d' % record.id)}">Editar</a>
             <a href="${tg.url('/enunciado/caso_de_prueba/delete/%d/%d' % (record.enunciado.id, 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>
 </table>
             <a href="${tg.url('/enunciado/caso_de_prueba/delete/%d/%d' % (record.enunciado.id, 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>
 </table>