]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/curso/templates/list.kid
13eeb1ccc1b3c87aaec0d4635a0431a20a56d14e
[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 class="list">
13     <tr>
14         <th>Numero</th>
15         <th>Cuatrimestre</th>
16         <th>Anio</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 py:replace="record.numero">numero</span></a></td>
31         <td><span py:replace="record.cuatrimestre">cuatrimestre</span></td>
32         <td><span py:replace="record.anio">anio</span></td>
33         <td><span py:replace="record.descripcion">descripcion</span></td>
34         <td><a py:if="len(record.docentes)" href="${tg.url('/docente/list')}"><span py:replace="len(record.docentes)">Docentes</span></a></td>
35         <td><a py:if="len(record.alumnos)"  href="${tg.url('/curso/alumno/list/%d' % record.id)}"><span py:replace="len(record.alumnos)">Alumnos</span></a></td>
36         <td align="center"><a href="${tg.url('/curso/grupo/list/%d' % record.id)}"><span py:replace="len(record.grupos)">Grupos</span></a></td>
37         <td><a py:if="len(record.ejercicios)" href="${tg.url('/ejercicio/list')}"><span py:replace="len(record.ejercicios)">Ejercicio</span></a></td>
38         <td><a href="${tg.url('/curso/show/%d' % record.id)}">Ver</a>
39             <a href="${tg.url('/curso/edit/%d' % record.id)}">Editar</a>
40             <a href="${tg.url('/curso/notas/%d' % record.id)}">Notas</a>
41             <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>
42     </tr>
43 </table>
44
45 <br/>
46 <a href="${tg.url('/curso/new')}">Agregar</a>
47
48 <div py:for="page in tg.paginate.pages">
49     <a py:if="page != tg.paginate.current_page"
50         href="${tg.paginate.get_href(page)}">${page}</a>
51     <b py:if="page == tg.paginate.current_page">${page}</b>
52 </div>
53
54 </body>
55 </html>
56
57 <!-- vim: set et sw=4 sts=4 : -->