]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/ejercicio/templates/edit.kid
Actualizar datos de prueba.
[software/sercom.git] / sercom / subcontrollers / ejercicio / 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 select_enunciado() {
10                 lista = MochiKit.DOM.getElement('enunciadoID');
11                 for(i=0; i &lt; l.options.length; i++) {
12                         if (l.options[i].value == ${record.enunciado.id}) {
13                                 l.options[i].selected = true;
14                                 l.selectedIndex = i;
15                                 break;
16                         }
17                 }
18         }
19 </script>
20 <body>
21
22 <h1>Modificación de <span py:replace="name">Objeto</span></h1>
23
24 <div id="hint">
25         Buscando registros ...
26 </div>
27
28 <div py:replace="form(value=record, action=tg.url('/ejercicio/update/%d' % record.id),
29         submit_text=_(u'Guardar'))">Formulario</div>
30
31 <br/>
32 <a href="${tg.url('/ejercicio/show/%d' % record.id)}">Ver (cancela)</a> |
33 <a href="${tg.url('/ejercicio/list')}">Volver (cancela)</a>
34 </body>
35 </html>