]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/ejercicio/templates/list.kid
entregas
[software/sercom.git] / sercom / subcontrollers / 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 <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>
13     <tr>
14         <th>Curso</th>
15         <th>Numero</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><a href="${tg.url('/curso/show/%d' % record.id)}"><span py:replace="record.curso.shortrepr()">curso</span></a></td>
22         <td><span py:replace="record.numero">numero</span></td>
23         <td><a py:if="record.enunciadoID is not None"
24                 href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}"><span
25                     py:replace="record.enunciado.shortrepr()">enunciado</span></a></td>
26         <td>
27             <span py:replace="record.grupal">grupal</span>
28         </td>
29         <td>
30             <a href="${tg.url('/entrega/%d' % record.id)}">Entregas</a>
31             <a href="${tg.url('/ejercicio/edit/%d' % record.id)}">Editar</a>
32             <a href="${tg.url('/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>
33         </td>
34     </tr>
35 </table>
36
37 <br/>
38 <a href="${tg.url('/ejercicio/new')}">Agregar</a>
39 <a py:if="parcial" href="${tg.url('/ejercicio/list')}">Ver todo</a>
40
41 <div py:for="page in tg.paginate.pages">
42     <a py:if="page != tg.paginate.current_page"
43         href="${tg.paginate.get_href(page)}">${page}</a>
44     <b py:if="page == tg.paginate.current_page">${page}</b>
45 </div>
46
47 </body>
48 </html>
49
50 <!-- vim: set et sw=4 sts=4 : -->