]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/caso_de_prueba/templates/show.kid
actualizo el grupo.update
[software/sercom.git] / sercom / subcontrollers / caso_de_prueba / templates / show.kid
index bafecc1fe35ac14e27c2403b7b73d89ba5308792..65159bf70844920bdd59143356918a5774ead196 100644 (file)
@@ -7,7 +7,7 @@
 </head>
 <body>
 
-<table>
+<table class="show">
     <tr>
         <th>Nombre:</th>
         <td><span py:replace="record.nombre">nombre</span></td>
         <th>Descripción:</th>
        <td><span py:replace="XML(record.desc)">descripcion</span></td>
     </tr>
+    <tr>
+        <th>Parámetros:</th>
+       <td>
+            <span py:if="record.parametros" py:replace="params2str(record.parametros)">--parámetros</span>:
+       </td>
+    </tr>
     <tr>
         <th>Código de retorno:</th>
        <td><span py:replace="record.retorno">retorno</span></td>
         <th>Tiempo de CPU:</th>
        <td><span py:replace="record.tiempo_cpu">tiempo_cpu</span></td>
     </tr>
-    <tr>
-        <th>Parámetros:</th>
-       <td>
-               <span py:for="p in record.parametros">
-                       <span py:replace="p">parámetro</span>
-               </span>
-       </td>
-    </tr>
 </table>
 
 <br/>