]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/curso/templates/edit.kid
Pongo el ID del alumno y no el de AlumnoInscripto
[software/sercom.git] / sercom / subcontrollers / curso / templates / edit.kid
index 5c29a141a14410760078ed759f9fbd92845e1824..ca5e84cca512fff41a37f0f236c9703244e9ceab 100644 (file)
@@ -5,17 +5,41 @@
 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
 <title>edit</title>
 </head>
 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
 <title>edit</title>
 </head>
+<script type="text/javascript">
+    function init_data() {
+ //       MochiKit.DOM.getElement('form_responsable').focus();
+        MochiKit.DOM.getElement('form_anio').focus();
+        <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>
+                // 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 &lt; options.length; j++)
+                if (options[j].value == i.value)
+                    return true;
+            return false;
+        }
+    MochiKit.DOM.addLoadEvent(init_data)
+</script>
 <body>
 
 <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),
 <body>
 
 <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),
-       submit_text=_(u'Guardar'))">Formulario</div>
-<a href="${tg.url('/curso/curso_alumno/new/%d' % record.id)}">Agregar Alumnos</a>
-       <br/>
-       <br/>
+    submit_text=_(u'Guardar'))">Formulario</div>
+<br/>
+<a href="${tg.url('/curso/from_file/%d' % record.id)}">Agregar Alumnos desde archivo</a> |
 <a href="${tg.url('/curso/show/%d' % record.id)}">Ver (cancela)</a> |
 <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('/curso/list')}">Volver (cancela)</a> |
 
 </body>
 </html>
 
 </body>
 </html>