]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/enunciado/templates/list.kid
bajar archivo desde correccion/entregas
[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" title="Casos de Prueba">CP</th>
21         <th>Operaciones</th>
22     </tr>
23                 <tr py:for="record in records">
24         <td><span py:replace="record.cuatrimestre">descripción</span></td>
25         <td><span py:replace="record.anio">descripción</span></td>
26         <td><a href="${tg.url('/enunciado/show/%d' % record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
27         <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
28                                 <td>
29                                         <a py:if="'admin' in identity.current.permissions and record.autorID is not None"
30                                                 href="${tg.url('/docente/show/%d' % record.autor.id)}" py:content="tg.summarize(record.autor.shortrepr(), 30)">autor</a>
31                                         <span py:if="'admin' not in identity.current.permissions and record.autorID is not None"
32                                                 py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span>
33                                 </td>
34         <td py:if="'admin' in identity.current.permissions"><a py:if="len(record.casos_de_prueba)"
35                 href="${tg.url('/caso_de_prueba/list', enunciado=record.id)}"><span
36                     py:replace="len(record.casos_de_prueba)">cant</span></a></td>
37         <td>
38             <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
39             <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>
40             <a py:if="record.archivo" href="${tg.url('/enunciado/files/%d' % record.id)}">Bajar Enunciado</a>
41         </td>
42     </tr>
43 </table>
44
45 <br/>
46 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/new')}">Agregar</a>
47
48 <div py:for="page in tg.paginate.pages">
49     <a py:if="page != tg.paginate.current_page"
50         href="${tg.paginate.get_href(page)}">${page}</a>
51     <b py:if="page == tg.paginate.current_page">${page}</b>
52 </div>
53
54 </body>
55 </html>
56
57 <!-- vim: set et sw=4 sts=4 : -->