]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/enunciado/templates/list.kid
filtro el combo en base a los permisos.
[software/sercom.git] / sercom / subcontrollers / enunciado / 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>Cuatrimestre</th>
15         <th>Año</th>
16         <th>Nombre</th>
17         <th>Descripción</th>
18         <th>Autor</th>
19         <th title="Casos de Prueba">CP</th>
20         <th>Operaciones</th>
21     </tr>
22                 <tr py:for="record in records">
23         <td><span py:replace="record.cuatrimestre">descripción</span></td>
24         <td><span py:replace="record.anio">descripción</span></td>
25         <td><a href="${tg.url('/enunciado/show/%d' % record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
26         <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
27         <td><a py:if="record.autorID is not None"
28                 href="${tg.url('/docente/show/%d' % record.autor.id)}"><span
29                     py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span></a></td>
30         <td><a py:if="len(record.casos_de_prueba)"
31                 href="${tg.url('/caso_de_prueba/list', enunciado=record.id)}"><span
32                     py:replace="len(record.casos_de_prueba)">cant</span></a></td>
33         <td>
34             <a href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
35             <a href="${tg.url('/enunciado/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Yo creo que no...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a>
36             <a py:if="record.archivo" href="${tg.url('/enunciado/files/%d' % record.id)}">Bajar Enunciado</a>
37         </td>
38     </tr>
39 </table>
40
41 <br/>
42 <a href="${tg.url('/enunciado/new')}">Agregar</a>
43 <a py:if="parcial" href="${tg.url('/enunciado/list')}">Ver todo</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 : -->