]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/enunciado/templates/list.kid
eaa44696ad550c890743e0dc07cd6b8ba24508c4
[z.facultad/75.52/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 <?python from turbogears import identity ?>
3 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
4     py:extends="'../../../templates/master.kid'">
5 <head>
6 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
7 <title>list</title>
8 </head>
9 <body>
10
11 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
12
13 <table class="list">
14     <tr>
15         <th>Cuatrimestre</th>
16         <th>Año</th>
17         <th>Nombre</th>
18         <th>Descripción</th>
19         <th>Autor</th>
20         <th py:if="'admin' in identity.current.permissions">Tareas</th>
21         <th py:if="'admin' in identity.current.permissions" title="Casos de Prueba">CP</th>
22         <th>Operaciones</th>
23     </tr>
24                 <tr py:for="record in records">
25         <td><span py:replace="record.cuatrimestre">descripción</span></td>
26         <td><span py:replace="record.anio">descripción</span></td>
27         <td><a href="${tg.url('/enunciado/show/%d' % record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
28         <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
29                                 <td>
30                                         <a py:if="'admin' in identity.current.permissions and record.autorID is not None"
31                                                 href="${tg.url('/docente/show/%d' % record.autor.id)}" py:content="tg.summarize(record.autor.shortrepr(), 30)">autor</a>
32                                         <span py:if="'admin' not in identity.current.permissions and record.autorID is not None"
33                                                 py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span>
34                                 </td>
35         <td py:if="'admin' in identity.current.permissions"><a py:if="len(record.tareas)"
36                 href="${tg.url('/enunciado/tarea/list/%d' % record.id)}"><span
37                     py:replace="len(record.tareas)">cant</span></a></td>
38         <td py:if="'admin' in identity.current.permissions"><a py:if="len(record.casos_de_prueba)"
39                 href="${tg.url('/caso_de_prueba/list', enunciado=record.id)}"><span
40                     py:replace="len(record.casos_de_prueba)">cant</span></a></td>
41         <td>
42             <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
43             <a py:if="'admin' in identity.current.permissions" 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>
44             <a py:if="record.archivo" href="${tg.url('/enunciado/files/%d' % record.id)}">Bajar Enunciado</a>
45         </td>
46     </tr>
47 </table>
48
49 <br/>
50 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/new')}">Agregar</a>
51
52 <div py:for="page in tg.paginate.pages">
53     <a py:if="page != tg.paginate.current_page"
54         href="${tg.paginate.get_href(page)}">${page}</a>
55     <b py:if="page == tg.paginate.current_page">${page}</b>
56 </div>
57
58 </body>
59 </html>
60
61 <!-- vim: set et sw=4 sts=4 : -->