]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/docente_inscripto/templates/list.kid
b862349058eaf558abb50bf741b409d8525f1279
[software/sercom.git] / sercom / subcontrollers / docente_inscripto / 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>Curso</th>
15         <th>Docente</th>
16         <th>Corrige</th>
17         <th>Observaciones</th>
18                                 <th>Operaciones</th>
19     </tr>
20     <tr py:for="record in records">
21         <!--td><input type="checkbox" onclick="var f =
22             document.createElement('form'); this.parentNode.appendChild(f);
23             f.method = 'POST'; f.action = '${tg.url('/alumno/activate/%d/%d' % (record.id, int(not record.activo)))}';
24             f.submit(); return false;"
25             py:attrs="checked=tg.checker(record.activo)" /></td-->
26         <td><a href="${tg.url('/curso/show/%d' % record.id)}"><span
27                     py:replace="record.curso">curso</span></a></td>
28         <td><span py:replace="record.docente">docente</span></td>
29         <td><span py:replace="record.corrige">corrige</span></td>
30         <td><span py:replace="record.observaciones">observaciones</span></td>
31         <td><a href="${tg.url('/docente_inscripto/edit/%d' % record.id)}">Editar</a>
32             <a href="${tg.url('/docente_inscripto/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>
33     </tr>
34 </table>
35
36 <br/>
37 <a href="${tg.url('/docente_inscripto/new')}">Agregar</a>
38
39 <div py:for="page in tg.paginate.pages">
40     <a py:if="page != tg.paginate.current_page"
41         href="${tg.paginate.get_href(page)}">${page}</a>
42     <b py:if="page == tg.paginate.current_page">${page}</b>
43 </div>
44
45 </body>
46 </html>
47
48 <!-- vim: set et sw=4 sts=4 : -->