* algunos cambios en los templates..
<table>
<tr>
- <th>Anio</th>
- <th>Cuatrimestre</th>
<th>Numero</th>
+ <th>Cuatrimestre</th>
+ <th>Anio</th>
<th>Descripcion</th>
<th>Docentes</th>
<th>Alumnos</th>
<h1>Modificación de <span py:replace="name">Objeto</span></h1>
-<div py:replace="form(value=record, action=tg.url('/curso/update/%d' % record.id),
+<div py:replace="form(value=record, action=tg.url('/docente_inscripto/update/%d' % record.id),
submit_text=_(u'Guardar'))">Formulario</div>
<br/>
-<a href="${tg.url('/curso/show/%d' % record.id)}">Ver (cancela)</a> |
-<a href="${tg.url('/curso/list')}">Volver (cancela)</a>
+<a href="${tg.url('/docente_inscripto/show/%d' % record.id)}">Ver (cancela)</a> |
+<a href="${tg.url('/docente_inscripto/list')}">Volver (cancela)</a>
</body>
</html>
f.method = 'POST'; f.action = '${tg.url('/alumno/activate/%d/%d' % (record.id, int(not record.activo)))}';
f.submit(); return false;"
py:attrs="checked=tg.checker(record.activo)" /></td-->
- <td><a href="${tg.url('/curso/show/%d' % record.id)}"><span
- py:replace="record.curso">curso</span></a></td>
- <td><span py:replace="record.docente">docente</span></td>
- <td><span py:replace="record.corrige">corrige</span></td>
+ <td><a href="${tg.url('/curso/show/%d' % record.id)}"><span py:replace="record.curso.shortrepr()">curso</span></a></td>
+ <td><a href="${tg.url('/docente/show/%d' % record.id)}"><span py:replace="record.docente.shortrepr()">docentes</span></a></td>
+ <td><span py:if="record.corrige">SI</span><span py:if="not record.corrige">NO</span></td>
<td><span py:replace="record.observaciones">observaciones</span></td>
<td><a href="${tg.url('/docente_inscripto/edit/%d' % record.id)}">Editar</a>
<a href="${tg.url('/docente_inscripto/delete/%d' % 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></td>
<table>
<tr>
<th>Curso:</th>
- <td><span py:replace="record.curso">curso</span></td>
+ <td><span py:replace="record.curso.shortrepr()">curso</span></td>
</tr>
<tr>
<th>Docente:</th>
- <td><span py:replace="record.docente">docente</span></td>
+ <td><span py:replace="record.docente.shortrepr()">docente</span></td>
</tr>
<tr>
- <th>Corrige:</th>
- <td><span py::replace="record.numero">numero</span></td>
+ <th>Observaciones:</th>
+ <td><span py:replace="record.observaciones">numero</span></td>
</tr>
<tr>
- <th>Descripcion:</th>
- <td><span py:if="record.corrige">SI</span></td>
- <td><span py:if="not record.corrige">NO</span></td>
+ <th>Corrige:</th>
+ <td><span py:if="record.corrige">SI</span><span py:if="not record.corrige">NO</span></td>
</tr>
</table>