]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/curso/grupo/templates/list.kid
Bugfix: copy&paste fix.
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / curso / grupo / 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>Nombre</th>
15         <th>Responsable</th>
16         <th>Tutores</th>
17         <th>Operaciones</th>
18     </tr>
19     <tr py:for="record in records">
20         <td><span py:replace="record.nombre">nombre</span></td>
21         <td><a py:if="record.responsable is not None" href="${tg.url('/alumno/show/'+str(record.responsable.alumno.id))}" py:content="record.responsable.alumno.shortrepr()"></a></td>
22         <td><span py:replace="', '.join((di.docente.usuario for di in record.docentes))">tito, juanca</span></td>
23         <td>
24             <a href="${tg.url('/curso/grupo/show/%d' % record.id)}">Ver</a>
25             <a href="${tg.url('/curso/grupo/edit/%d' % record.id)}">Editar</a>
26             <a href="${tg.url('/curso/grupo/delete/%d/%d' % (record.curso.id, 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>
27         </td>
28     </tr>
29 </table>
30
31 <br/>
32 <a href="${tg.url('/curso/grupo/new/%d' % cursoID)}">Agregar</a> |
33 <a href="${tg.url('/curso/grupo/admin/%d' % cursoID)}">Mezclar, Juntar, Separar Grupos</a> |
34 <a href="${tg.url('/curso/list')}">Volver a Cursos</a>
35 <br/>
36 <br/>
37 <br/>
38 <br/>
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 : -->