]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/curso/templates/edit.kid
Permitir pasar el el archivo de configuración por línea de comandos al tester.
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / curso / templates / edit.kid
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'">
4 <head>
5 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
6 <title>edit</title>
7 </head>
8 <script type="text/javascript">
9     function init_data() {
10  //       MochiKit.DOM.getElement('form_responsable').focus();
11         MochiKit.DOM.getElement('form_anio').focus();
12         <span py:for="d in record.docentes_to" py:strip="True">
13             MochiKit.DOM.appendChildNodes("form_docentes_to", OPTION({"value":${d['id']}}, '${d['label']}'))
14         </span>
15
16         <span py:for="a in record.alumnos_inscriptos" py:strip="True">
17             MochiKit.DOM.appendChildNodes("form_alumnos", OPTION({"value":${a['id']}}, '${a['label']}'))
18         </span>
19                 // Saco de FROM los que ya estan en TO
20                 replaceChildNodes('form_docentes_from', list(ifilterfalse(
21                     partial(esta_en_to, $('form_docentes_to').options),
22                     $('form_docentes_from').options
23                 )));
24         }
25         function esta_en_to (options, i) {
26             for (j=0; j &lt; options.length; j++)
27                 if (options[j].value == i.value)
28                     return true;
29             return false;
30         }
31     MochiKit.DOM.addLoadEvent(init_data)
32 </script>
33 <body>
34
35 <h1>Modificación de <span py:replace="name">Objeto</span></h1>
36
37 <div py:replace="form(value=record, action=tg.url('/curso/update/%d' % record.id),
38     submit_text=_(u'Guardar'))">Formulario</div>
39 <br/>
40 <a href="${tg.url('/curso/from_file/%d' % record.id)}">Agregar Alumnos desde archivo</a> |
41 <a href="${tg.url('/curso/show/%d' % record.id)}">Ver (cancela)</a> |
42 <a href="${tg.url('/curso/list')}">Volver (cancela)</a> |
43
44 </body>
45 </html>