]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/caso_de_prueba/templates/edit.kid
Usar bien mensajes flash().
[software/sercom.git] / sercom / subcontrollers / caso_de_prueba / 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 <script>
8     MochiKit.Signal.connect(window, 'onload', function() { $('form_nombre').focus(); });
9 </script>
10 </head>
11 <body>
12
13 <h1>Modificación de <span py:replace="name">Objeto</span></h1>
14
15 <div py:replace="form(value=record, action=tg.url('/caso_de_prueba/update/%d' % record.id),
16         submit_text=_(u'Guardar'))">Formulario</div>
17
18 <br/>
19 <a href="${tg.url('/caso_de_prueba/show/%d' % record.id)}">Ver (cancela)</a> |
20 <a href="${tg.url('/caso_de_prueba/list')}">Volver (cancela)</a>
21
22 </body>
23 </html>