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="''"/>
10 <h1><span py:replace="namepl">Objetos</span> del Curso <span py:replace="curso.shortrepr()">Curso</span></h1>
16 <th>Observaciones</th>
19 <tr py:for="record in records">
20 <td><a href="${tg.url('/docente/show/%d' % record.docente.id)}"><span py:replace="record.docente.shortrepr()">docentes</span></a></td>
21 <td align="center"><span py:replace="tg.strbool(record.corrige)">Si/No</span></td>
22 <td><span py:replace="record.observaciones">observaciones</span></td>
24 <a href="${tg.url('/curso/docente/edit/%d' % record.id)}">Editar</a>
25 <a href="${tg.url('/curso/docente/delete/%d/%d' % (record.curso.id, record.id))}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a>
32 <a href="${tg.url('/curso/docente/new/%d' % curso.id)}">Agregar</a> |
33 <a href="${tg.url('/curso/list')}">Volver</a>
35 <div py:for="page in tg.paginate.pages">
36 <a py:if="page != tg.paginate.current_page"
37 href="${tg.paginate.get_href(page)}">${page}</a>
38 <b py:if="page == tg.paginate.current_page">${page}</b>
44 <!-- vim: set et sw=4 sts=4 : -->