]> git.llucax.com Git - software/sercom.git/commitdiff
Agregar parámetros de un caso de prueba al listar.
authorLeandro Lucarella <llucax@gmail.com>
Wed, 21 Feb 2007 04:13:40 +0000 (04:13 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 21 Feb 2007 04:13:40 +0000 (04:13 +0000)
sercom/subcontrollers/caso_de_prueba/templates/list.kid

index 79de04645290520669bfa913cee026909250e7ba..c00f57c5d4612ed3b4f436b1b63fea4b028988a4 100644 (file)
@@ -14,6 +14,7 @@
         <th>Nombre</th>
         <th>Enunciado</th>
         <th>Descripción</th>
+        <th>Parámetros</th>
         <th title="Código de retorno">RET</th>
         <th title="Tiempo de CPU">CPU</th>
         <th>Operaciones</th>
@@ -24,6 +25,7 @@
                 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.parametros" py:replace="tg.summarize(' '.join([repr(p) for p in record.parametros]), 30)">--parametros</span></td>
         <td><span py:replace="record.retorno">retorno</span></td>
         <td><span py:replace="record.tiempo_cpu">tiempo de cpu</span></td>
         <td><a href="${tg.url('/caso_de_prueba/edit/%d' % record.id)}">Editar</a>