]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/curso/ejercicio/templates/list.kid
7c02354c930917556e22afeb34e2694a4dde13ea
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / curso / ejercicio / 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><span py:replace="namepl.capitalize()">Objetos</span> del curso <span py:replace="curso.shortrepr()" /></h1>
12
13 <table class="list">
14     <tr>
15         <th>Número</th>
16         <th>Enunciado</th>
17         <th>Es Grupal?</th>
18         <th>Operaciones</th>
19     </tr>
20     <tr py:for="record in records">
21         <td><span py:replace="record.numero">numero</span></td>
22         <td><a href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}"><span py:replace="record.enunciado.shortrepr()">enunciado</span></a></td>
23         <td><span py:replace="tg.strbool(record.grupal)">grupal</span></td>
24         <td>
25             <a href="${tg.url('/curso/ejercicio/show/%d' % record.id)}">Ver</a>
26             <a href="${tg.url('/curso/ejercicio/instancia/list/%d' % record.id)}">Instancias</a>
27             <a href="${tg.url('/enunciado/files/%d' % record.enunciadoID)}">Bajar archivos</a>
28             <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/edit/%d' % record.id)}">Editar</a>
29             <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/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>
30         </td>
31     </tr>
32 </table>
33
34 <br/>
35 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/new/%s' % curso)}">Agregar</a>
36 | <a href="${tg.url('/curso')}">Volver a Cursos</a>
37
38 <div py:for="page in tg.paginate.pages">
39     <a py:if="page != tg.paginate.current_page"
40         href="${tg.paginate.get_href(page)}">${page}</a>
41     <b py:if="page == tg.paginate.current_page">${page}</b>
42 </div>
43
44 </body>
45 </html>
46
47 <!-- vim: set et sw=4 sts=4 : -->