]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/enunciado/templates/list.kid
5bd5c2f6302442f77536172e8287c3223d33f91f
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / enunciado / 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>
13     <tr>
14         <th>Nombre</th>
15         <th>Descripción</th>
16         <th>Autor</th>
17         <th>Operaciones</th>
18     </tr>
19     <tr py:for="record in records">
20         <td><a href="${tg.url('/enunciado/show/%d' % record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
21         <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
22         <td><a py:if="record.autorID is not None"
23                 href="${tg.url('/docente/show/%d' % record.autor.id)}"><span
24                     py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span></a></td>
25         <td><a href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
26             <a href="${tg.url('/enunciado/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>
27     </tr>
28 </table>
29
30 <br/>
31 <a href="${tg.url('/enunciado/new')}">Agregar</a>
32
33 <div py:for="page in tg.paginate.pages">
34     <a py:if="page != tg.paginate.current_page"
35         href="${tg.paginate.get_href(page)}">${page}</a>
36     <b py:if="page == tg.paginate.current_page">${page}</b>
37 </div>
38
39 </body>
40 </html>
41
42 <!-- vim: set et sw=4 sts=4 : -->