]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/correccion/templates/list.kid
265b2ce0222f68591bc20be6c4b8271569bd306d
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / correccion / 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 sercom.model import Grupo, AlumnoInscripto ?>
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 <div py:replace="form(value=vfilter, action=tg.url('/correccion/list'), submit_text=_(u'Filtrar'))">Filtros</div>
14
15 <table class="list">
16     <tr>
17                                 <th>Ejercicio</th>
18                                 <th><span title="Instancia de Entrega">IE</span></th>
19         <th>Entregador</th>
20         <th>Entregas</th>
21         <th>Corrector</th>
22         <th>Asignado</th>
23         <th>Corregido</th>
24                                 <th>Nota</th>
25                                 <th>Operaciones</th>
26     </tr>
27     <tr py:for="record in records">
28         <td><span py:replace="record.instancia.ejercicio.enunciado.nombre">usuario</span></td>
29         <td><span py:replace="record.instancia.shortrepr()">usuario</span></td>
30                                 <td>
31                                         <a py:if="isinstance(record.entregador, Grupo)" href="${tg.url('/grupo/show/%d' % record.entregador.id)}" py:content="record.entregador.shortrepr()">nombre</a>
32                                         <a py:if="isinstance(record.entregador, AlumnoInscripto)" href="${tg.url('/alumno/show/%d' % record.entregador.alumno.id)}" py:content="record.entregador.shortrepr()">nombre</a>
33                                 </td>
34                                 <td align="center"><a href="${tg.url('/correccion/entregas/%d' % record.id)}" py:content="len(record.entregas)">entregas realizadas</a></td>
35                                 <td><a href="${tg.url('/docente/show/%d' % record.corrector.docente.id)}" py:content="record.corrector.shortrepr()">corrector</a></td>
36         <td><span py:replace="record.asignado">fecha asignado</span></td>
37         <td><span py:replace="record.corregido">fecha corregido</span></td>
38         <td align="right"><span py:replace="record.nota">nota</span></td>
39                                 <td>
40                                         <a href="${tg.url('/correccion/show/%d' % record.id)}">Ver</a>
41                                         <a py:if="not record.corregido and not record.nota" href="${tg.url('/correccion/edit/%d' % record.id)}">Corregir</a>
42                                         <a py:if="record.corregido or record.nota" href="${tg.url('/correccion/edit/%d' % record.id)}">Editar</a>
43                                 </td>
44     </tr>
45 </table>
46
47 <div py:for="page in tg.paginate.pages">
48     <a py:if="page != tg.paginate.current_page"
49         href="${tg.paginate.get_href(page)}">${page}</a>
50     <b py:if="page == tg.paginate.current_page">${page}</b>
51 </div>
52
53 </body>
54 </html>
55
56 <!-- vim: set et sw=4 sts=4 : -->