]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/curso/templates/list.kid
cambio de pc con nico :)
[software/sercom.git] / sercom / subcontrollers / curso / 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>Anio</th>
15         <th>Cuatrimestre</th>
16         <th>Numero</th>
17         <th>Descripcion</th>
18         <th>Docentes</th>
19         <th>Alumnos</th>
20         <th>Grupos</th>
21                                 <th>Ejercicios</th>
22                                 <th>Operaciones</th>
23     </tr>
24     <tr py:for="record in records">
25         <!--td><input type="checkbox" onclick="var f =
26             document.createElement('form'); this.parentNode.appendChild(f);
27             f.method = 'POST'; f.action = '${tg.url('/alumno/activate/%d/%d' % (record.id, int(not record.activo)))}';
28             f.submit(); return false;"
29             py:attrs="checked=tg.checker(record.activo)" /></td-->
30         <td><a href="${tg.url('/curso/show/%d' % record.id)}"><span
31                     py:replace="record.numero">numero</span></a></td>
32         <td><span py:replace="record.cuatrimestre">cuatrimestre</span></td>
33         <td><span py:replace="record.anio">anio</span></td>
34         <td><span py:replace="record.descripcion">descripcion</span></td>
35         <td><span py:replace="record.docentes">docentes</span></td>
36         <td><span py:replace="record.alumnos">alumnos</span></td>
37         <td><span py:replace="record.grupos">grupos</span></td>
38         <td><span py:replace="record.ejercicios">ejercicios</span></td>
39         <td><a href="${tg.url('/curso/edit/%d' % record.id)}">Editar</a>
40             <a href="${tg.url('/curso/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>
41     </tr>
42 </table>
43
44 <br/>
45 <a href="${tg.url('/curso/new')}">Agregar</a>
46
47 <div py:for="page in tg.paginate.pages">
48     <a py:if="page != tg.paginate.current_page"
49         href="${tg.paginate.get_href(page)}">${page}</a>
50     <b py:if="page == tg.paginate.current_page">${page}</b>
51 </div>
52
53 </body>
54 </html>
55
56 <!-- vim: set et sw=4 sts=4 : -->