]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/enunciado/caso_de_prueba/templates/list.kid
38c4d273d0ff3ea739f13b6cd52f0d02a862d6d2
[software/sercom.git] / sercom / subcontrollers / enunciado / 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>Comando</th>
16         <th title="Código de retorno">RET</th>
17         <th title="Es público?">PUB</th>
18         <th>Operaciones</th>
19     </tr>
20     <tr py:for="record in records">
21         <td><span py:replace="record.nombre">nombre</span></td>
22         <td><span py:if="record.comando" py:replace="record.comando">comando --con-parámetros</span></td>
23         <td><span py:replace="record.retorno">retorno</span></td>
24         <td><span py:replace="tg.strbool(record.publico)">No</span></td>
25         <td>
26             <a href="${tg.url('/caso_de_prueba/show/%d'% record.id)}">Ver</a>
27             <a href="${tg.url('/enunciado/caso_de_prueba/edit/%d' % record.id)}">Editar</a>
28             <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>
29     </tr>
30 </table>
31
32 <br/>
33 <a href="${tg.url('/enunciado/caso_de_prueba/new/%d' % enunciado)}">Agregar</a>
34 <a href="${tg.url('/enunciado/list')}">Volver</a>
35
36 <div py:for="page in tg.paginate.pages">
37     <a py:if="page != tg.paginate.current_page"
38         href="${tg.paginate.get_href(page)}">${page}</a>
39     <b py:if="page == tg.paginate.current_page">${page}</b>
40 </div>
41
42 </body>
43 </html>
44
45 <!-- vim: set et sw=4 sts=4 : -->