]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/grupo/templates/list.kid
Permito ocultar cosas en el Menu para Entregador
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / grupo / 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 <div py:replace="form(value=vfilter, action=tg.url('/grupo/list'),      submit_text=_(u'Filtrar'))">Filtros</div>
13
14 <table class="list">
15     <tr>
16         <th>Curso</th>
17         <th>Nombre</th>
18         <th>Responsable</th>
19         <th>Operaciones</th>
20     </tr>
21     <tr py:for="record in records">
22             <td><a href="${tg.url('/curso/show/'+str(record.curso.id))}" py:content="record.curso.shortrepr()">curso</a></td>
23         <td><span py:replace="record.nombre">nombre</span></td>
24                 <td><a py:if="record.responsable is not None" href="${tg.url('/alumno/show/'+str(record.responsable.alumno.id))}" py:content="record.responsable.alumno.shortrepr()"></a></td>
25                 <td>
26                     <a href="${tg.url('/grupo/show/%d' % record.id)}">Ver</a>
27                     <a href="${tg.url('/grupo/edit/%d' % record.id)}">Editar</a>
28                     <a href="${tg.url('/grupo/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>
29                 </td>
30     </tr>
31 </table>
32
33 <br/>
34 <a href="${tg.url('/grupo/new')}">Agregar</a>
35 <br/>
36 <br/>
37 <div py:for="page in tg.paginate.pages">
38     <a py:if="page != tg.paginate.current_page"
39         href="${tg.paginate.get_href(page)}">${page}</a>
40     <b py:if="page == tg.paginate.current_page">${page}</b>
41 </div>
42
43 </body>
44 </html>
45
46 <!-- vim: set et sw=4 sts=4 : -->