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