<span py:for="d in record.docentes_to" py:strip="True">
MochiKit.DOM.appendChildNodes("form_docentes_to", OPTION({"value":${d['id']}}, '${d['label']}'))
</span>
<span py:for="d in record.docentes_to" py:strip="True">
MochiKit.DOM.appendChildNodes("form_docentes_to", OPTION({"value":${d['id']}}, '${d['label']}'))
</span>
<span py:for="a in record.alumnos_inscriptos" py:strip="True">
MochiKit.DOM.appendChildNodes("form_alumnos", OPTION({"value":${a['id']}}, '${a['label']}'))
</span>
<span py:for="a in record.alumnos_inscriptos" py:strip="True">
MochiKit.DOM.appendChildNodes("form_alumnos", OPTION({"value":${a['id']}}, '${a['label']}'))
</span>
- // Saco de FROM los que ya estan en TO
- replaceChildNodes('form_docentes_from', list(ifilterfalse(
- partial(esta_en_to, $('form_docentes_to').options),
- $('form_docentes_from').options
- )));
- }
- function esta_en_to (options, i) {
- for (j=0; j < options.length; j++)
- if (options[j].value == i.value)
- return true;
- return false;
- }
+ // Saco de FROM los que ya estan en TO
+ replaceChildNodes('form_docentes_from', list(ifilterfalse(
+ partial(esta_en_to, $('form_docentes_to').options),
+ $('form_docentes_from').options
+ )));
+ }
+ function esta_en_to (options, i) {
+ for (j=0; j < options.length; j++)
+ if (options[j].value == i.value)
+ return true;
+ return false;
+ }
<div py:replace="form(value=record, action=tg.url('/curso/update/%d' % record.id),
submit_text=_(u'Guardar'))">Formulario</div>
<br/>
<div py:replace="form(value=record, action=tg.url('/curso/update/%d' % record.id),
submit_text=_(u'Guardar'))">Formulario</div>
<br/>