]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/curso/grupo/templates/edit.kid
Hacer descripción de CasoDePrueba no obligatoria.
[software/sercom.git] / sercom / subcontrollers / curso / grupo / 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_nombre').focus();
12                 <span py:for="i in record.miembros" py:strip="True">
13                         MochiKit.DOM.appendChildNodes("form_miembros", OPTION({"value":${i['id']}}, '${i['label']}'))
14                 </span>
15         }
16         MochiKit.DOM.addLoadEvent(init_data)
17 </script>
18
19 <body>
20 <h1>Modificación de <span py:replace="name">Objeto</span></h1>
21
22 <div py:replace="form(value=record, action=tg.url('/curso/grupo/update/%d' % record.id),
23         options=options, submit_text=_(u'Guardar'))">Formulario</div>
24
25 <br/>
26 <a href="${tg.url('/curso/grupo/list/%d' % record.cursoID)}">Volver (cancela)</a>
27
28 </body>
29 </html>