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'">
6 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
11 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
13 <div py:replace="form(value=vfilter, action=tg.url('/alumno_inscripto/list'), submit_text=_(u'Filtrar'))">Filtros</div>
23 <tr py:for="record in records">
24 <td><span py:replace="record.curso.shortrepr()">usuario</span></td>
25 <td><span py:replace="record.alumno.shortrepr()">fecha asignado</span></td>
26 <td><span py:replace="record.condicional">fecha corregido</span></td>
27 <td><span py:if="record.tutor" py:replace="record.tutor.shortrepr()">Tutor</span></td>
29 <a href="${tg.url('/correccion/show/%d' % record.id)}">Ver</a>
34 <div py:for="page in tg.paginate.pages">
35 <a py:if="page != tg.paginate.current_page"
36 href="${tg.paginate.get_href(page)}">${page}</a>
37 <b py:if="page == tg.paginate.current_page">${page}</b>
43 <!-- vim: set et sw=4 sts=4 : -->