]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/caso_de_prueba/templates/list.kid
356e0f58b96d9a50cc967c2ab4c789fdbe499973
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / caso_de_prueba / templates / list.kid
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
3     py:extends="'../../../templates/master.kid'">
4 <head>
5 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
6 <title>list</title>
7 </head>
8 <body>
9
10 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
11
12 <table class="list">
13     <tr>
14         <th>Nombre</th>
15         <th>Enunciado</th>
16         <th>Descripción</th>
17         <th>Parámetros</th>
18         <th title="Código de retorno">RET</th>
19         <th title="Tiempo de CPU">CPU</th>
20         <th>Operaciones</th>
21     </tr>
22     <tr py:for="record in records">
23         <td><a href="${tg.url('/caso_de_prueba/show/%d'% record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
24         <td><a py:if="record.enunciadoID is not None"
25                 href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}"><span
26                     py:replace="tg.summarize(record.enunciado.shortrepr(), 30)">enunciado</span></a></td>
27         <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
28         <td><span py:if="record.comando" py:replace="tg.summarize(params2str(record.comando), 30)">comando --con-parámetros</span></td>
29         <td><span py:replace="record.retorno">retorno</span></td>
30         <td><span py:replace="record.tiempo_cpu">tiempo de cpu</span></td>
31         <td><a href="${tg.url('/caso_de_prueba/edit/%d' % record.id)}">Editar</a>
32             <a href="${tg.url('/caso_de_prueba/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>
33     </tr>
34 </table>
35
36 <br/>
37 <a href="${tg.url('/caso_de_prueba/new')}">Agregar</a>
38 <a py:if="parcial" href="${tg.url('/caso_de_prueba/list')}">Ver todo</a>
39
40 <div py:for="page in tg.paginate.pages">
41     <a py:if="page != tg.paginate.current_page"
42         href="${tg.paginate.get_href(page)}">${page}</a>
43     <b py:if="page == tg.paginate.current_page">${page}</b>
44 </div>
45
46 </body>
47 </html>
48
49 <!-- vim: set et sw=4 sts=4 : -->