]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/tarea_prueba/templates/list.kid
676ace7d30ddb7696ee604ea70b62553ddb46e73
[software/sercom.git] / sercom / subcontrollers / tarea_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>Descripcion</th>
16         <th>Operaciones</th>
17     </tr>
18     <tr py:for="record in records">
19         <td><span py:replace="record.nombre">nombre</span></td>
20         <td><span py:replace="record.descripcion">nota</span></td>
21         <td>
22             <a href="${tg.url('/tarea_prueba/comandos/list/%d' % record.id)}">Comandos</a>
23             <a href="${tg.url('/tarea_prueba/edit/%d' % record.id)}">Editar</a>
24             <a href="${tg.url('/tarea_prueba/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
25     </tr>
26 </table>
27
28 <br/>
29 <a href="${tg.url('/tarea_prueba/new')}">Agregar</a>
30
31 <div py:for="page in tg.paginate.pages">
32     <a py:if="page != tg.paginate.current_page"
33         href="${tg.paginate.get_href(page)}">${page}</a>
34     <b py:if="page == tg.paginate.current_page">${page}</b>
35 </div>
36
37 </body>
38 </html>
39
40 <!-- vim: set et sw=4 sts=4 : -->