#{{{ Formulario
class AlumnoInscriptoForm(W.TableForm):
class Fields(W.WidgetsList):
- nota_practica = W.TextField(label=_(u'Nota Practica'), validator=V.Number(not_empty=True, strip=True))
+ nota_practica = W.TextField(label=_(u'Nota Práctica'), validator=V.Number(not_empty=True, strip=True))
nota_final = W.TextField(label=_(u'Nota Final'), validator=V.Number(not_empty=True, strip=True))
nota_libreta = W.TextField(label=_(u'Nota Libreta'), validator=V.Number(not_empty=True, strip=True))
fields = Fields()
</tr>
<tr py:for="record in records">
<td><a href="${tg.url('/curso/alumno/show/%d' % record.alumno.id)}" py:content="record.alumno.shortrepr()">alumno</a></td>
- <td><span py:replace="record.condicional">fecha corregido</span></td>
+ <td align="center"><span py:replace="tg.strbool(record.condicional)">fecha corregido</span></td>
<td><a py:if="record.tutor" href="${tg.url('/docente/show/%d' % record.tutor.id)}" py:content="record.tutor.shortrepr()">Tutor</a></td>
<td>
<a href="${tg.url('/curso/alumno/notas/%d/%d' % (record.id, curso.id))}">Notas</a>
<title>notas</title>
</head>
<body>
-<h1>Modificacion de <span py:replace="name">Objeto</span></h1>
+<h1>Notas de <span py:replace="record.alumno.shortrepr()">Objeto</span></h1>
<div py:replace="form(value=record, action=tg.url('/curso/alumno/update/%d/%d' % (record.id, cursoid)),
submit_text=_(u'Guardar'))">Formulario</div>
docente = W.SingleSelectField(label=_(u'Docente'), options = get_docentes,
validator = V.Int(not_empty=True))
- corrige = W.CheckBox(label=_(u'Corrige'))
+ corrige = W.CheckBox(label=_(u'Corrige?'))
observaciones = W.TextArea(name='observaciones', label=_(u'Observaciones'),
validator=V.UnicodeString(not_empty=False, strip=True))
<table class="list">
<tr>
<th>Docente</th>
- <th>Corrige</th>
+ <th>Corrige?</th>
<th>Observaciones</th>
<th>Operaciones</th>
</tr>
<tr py:for="record in records">
- <!--td><input type="checkbox" onclick="var f =
- document.createElement('form'); this.parentNode.appendChild(f);
- 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('/docente/show/%d' % record.docente.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 align="center"><span py:replace="tg.strbool(record.corrige)">Si/No</span></td>
<td><span py:replace="record.observaciones">observaciones</span></td>
- <td><a href="${tg.url('/curso/docente/edit/%d' % record.id)}">Editar</a>
- <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></td>
+ <td>
+ <a href="${tg.url('/curso/docente/edit/%d' % record.id)}">Editar</a>
+ <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>
+ </td>
</tr>
</table>
<br/>
+
<a href="${tg.url('/curso/docente/new/%d' % curso.id)}">Agregar</a> |
<a href="${tg.url('/curso/list')}">Volver</a>
</head>
<body>
- <h1>Administración de <span py:replace="namepl">Objetos</span> Curso <span py:replace="curso.shortrepr()" /></h1>
+<h1><span py:replace="namepl.capitalize()">Objetos</span> del curso <span py:replace="curso.shortrepr()" /></h1>
<table class="list">
<tr>
- <th>Numero</th>
+ <th>Número</th>
<th>Enunciado</th>
<th>Es Grupal?</th>
<th>Operaciones</th>