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'">
5 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
13 <td><span py:replace="record.nombre">nombre</span></td>
17 <td><span py:replace="record.curso.shortrepr()">curso</span></td>
22 <span py:for="a in record.tutores">
23 <span py:replace="a.docente.shortrepr()" />
30 <td><span py:if="record.responsable is not None" py:replace="record.responsable.shortrepr()">numero</span></td>
35 <span py:for="a in record.miembros" py:if="not a.baja">
36 <a href="${tg.url('/curso/alumno/show/%d/%d' % (a.alumno.id, a.alumno.curso.id))}" py:content="a.alumno.shortrepr()" />
44 <a href="${tg.url('/curso/grupo/edit/%d' % record.id)}">Editar</a> |
45 <a href="${tg.url('/curso/grupo/list/%d' % record.curso.id)}">Volver</a>