]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/curso/ejercicio/instancia/templates/list.kid
Pongo en color rojo, amarillo o verde a cada fila de las entregas dependiendo como...
[software/sercom.git] / sercom / subcontrollers / curso / ejercicio / instancia / 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>Nro</th>
16         <th>Inicio</th>
17         <th>Fin</th>
18         <th>Procesada?</th>
19         <th>En proceso?</th>
20         <th>Activa?</th>
21         <th>Entregas</th>
22         <th>Observaciones</th>
23         <th>Operaciones</th>
24     </tr>
25     <tr py:for="record in records">
26         <td><span py:replace="record.numero">numero</span></td>
27         <td><span py:replace="record.inicio">inicio</span></td>
28         <td><span py:replace="record.fin">fin</span></td>
29         <td align="center"><span py:replace="tg.strbool(record.fin_proceso is not None)">procesada</span></td>
30         <td align="center"><span py:replace="tg.strbool(record.inicio_proceso is not None and record.fin_proceso is None)">en proceso</span></td>
31         <td align="center"><span py:replace="tg.strbool(record.activo)">activa</span></td>
32                                 <td align="center"><a href="${tg.url('/curso/ejercicio/instancia/entregas/%d' % record.id)}" py:content="len(record.entregas)">activa</a></td>
33         <td><span py:replace="record.observaciones">obs</span></td>
34         <td>
35             <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/instancia/show/%d' % record.id)}">Ver</a>
36             <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/instancia/edit/%d' % record.id)}">Editar</a>
37             <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/instancia/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>
38         </td>
39     </tr>
40 </table>
41
42 <br/>
43 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/instancia/new/%s' % ejercicio.id)}">Agregar</a> |
44 <a href="${tg.url('/curso/ejercicio/list/%s' % ejercicio.curso.id)}">Volver a Ejericicios</a>
45
46 <div py:for="page in tg.paginate.pages">
47     <a py:if="page != tg.paginate.current_page"
48         href="${tg.paginate.get_href(page)}">${page}</a>
49     <b py:if="page == tg.paginate.current_page">${page}</b>
50 </div>
51
52 </body>
53 </html>
54
55 <!-- vim: set et sw=4 sts=4 : -->