]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/curso/templates/list.kid
Muevo docente_inscripto dentro de Curso.
[z.facultad/75.52/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>#</th>
15         <th>Nro</th>
16         <th># Cuat.</th>
17         <th>Anio</th>
18         <th>Descripcion</th>
19         <th>Docentes</th>
20         <th>Alumnos</th>
21         <th>Grupos</th>
22         <th>Ejercicios</th>
23         <th>Operaciones</th>
24     </tr>
25     <tr py:for="record in records">
26         <td><span py:replace="record.id">id</span></td>
27         <td align="center"><span py:replace="record.numero">numero</span></td>
28         <td align="center"><span py:replace="record.cuatrimestre">cuatrimestre</span></td>
29         <td align="center"><span py:replace="record.anio">anio</span></td>
30         <td><span py:replace="record.descripcion">descripcion</span></td>
31         <td align="center"><a href="${tg.url('/curso/docente/list/%d' % record.id)}"><span py:replace="len(record.docentes)">Docentes</span></a></td>
32         <td align="center"><a href="${tg.url('/curso/alumno/list/%d' % record.id)}"><span py:replace="len(record.alumnos)">Alumnos</span></a></td>
33         <td align="center"><a href="${tg.url('/curso/grupo/list/%d' % record.id)}"><span py:replace="len(record.grupos)">Grupos</span></a></td>
34         <td align="center"><a href="${tg.url('/curso/ejercicio/list/%s' % record.id)}"><span py:replace="len(record.ejercicios)">Ejercicio</span></a></td>
35         <td><a href="${tg.url('/curso/show/%d' % record.id)}">Ver</a>
36             <a href="${tg.url('/curso/edit/%d' % record.id)}">Editar</a>
37             <a href="${tg.url('/curso/notas/%d' % record.id)}">Notas</a>
38             <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>
39     </tr>
40 </table>
41
42 <br/>
43 <a href="${tg.url('/curso/new')}">Agregar</a>
44
45 <div py:for="page in tg.paginate.pages">
46     <a py:if="page != tg.paginate.current_page"
47         href="${tg.paginate.get_href(page)}">${page}</a>
48     <b py:if="page == tg.paginate.current_page">${page}</b>
49 </div>
50
51 </body>
52 </html>
53
54 <!-- vim: set et sw=4 sts=4 : -->