]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
ABM de TareaPrueba
authorRicardo Markiewicz <rmarkie@fi.uba.ar>
Wed, 14 Mar 2007 16:09:45 +0000 (16:09 +0000)
committerRicardo Markiewicz <rmarkie@fi.uba.ar>
Wed, 14 Mar 2007 16:09:45 +0000 (16:09 +0000)
14 files changed:
sercom/controllers.py
sercom/subcontrollers/__init__.py
sercom/subcontrollers/tarea_fuente/comandos/templates/list.kid
sercom/subcontrollers/tarea_prueba/__init__.py [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/comandos/__init__.py [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/comandos/templates/__init__.py [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/comandos/templates/edit.kid [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/comandos/templates/list.kid [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/comandos/templates/new.kid [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/templates/__init__.py [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/templates/edit.kid [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/templates/list.kid [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/templates/new.kid [new file with mode: 0644]
sercom/subcontrollers/tarea_prueba/templates/show.kid [new file with mode: 0644]

index ed65ccefe929640e79c295cc31999d7d4d5235fb..3f91e912b854f33ff67814767387642dd2b014bc 100644 (file)
@@ -121,6 +121,8 @@ class Root(controllers.RootController):
 
     tarea_fuente = TareaFuenteController()
 
 
     tarea_fuente = TareaFuenteController()
 
+    tarea_prueba = TareaPruebaController()
+
     caso_de_prueba = CasoDePruebaController()
 
     curso = CursoController()
     caso_de_prueba = CasoDePruebaController()
 
     curso = CursoController()
index b20fd272a4607e276b3e018e13b134f8e1154b5c..56aa6ef242c88663c610413e201ce0318bb76b00 100644 (file)
@@ -11,3 +11,4 @@ from misentregas import MisEntregasController
 from grupo_admin import GrupoAdminController
 from miscorrecciones import MisCorreccionesController
 from tarea_fuente import TareaFuenteController
 from grupo_admin import GrupoAdminController
 from miscorrecciones import MisCorreccionesController
 from tarea_fuente import TareaFuenteController
+from tarea_prueba import TareaPruebaController
index 2abb463f0faeae9a62f4e374c6dbd2fff6e95955..8d023bfa579a6019455d5c80a6e184010e4c55f2 100644 (file)
@@ -7,7 +7,7 @@
 </head>
 <body>
 
 </head>
 <body>
 
-<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
+<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
 
 <table class="list">
     <tr>
 
 <table class="list">
     <tr>
@@ -19,7 +19,7 @@
         <td><span py:replace="record.orden">telefono</span></td>
         <td><span py:replace="record.comando">telefono</span></td>
         <td><a href="${tg.url('/tarea_fuente/comandos/edit/%d' % record.id)}">Editar</a>
         <td><span py:replace="record.orden">telefono</span></td>
         <td><span py:replace="record.comando">telefono</span></td>
         <td><a href="${tg.url('/tarea_fuente/comandos/edit/%d' % record.id)}">Editar</a>
-            <a href="${tg.url('/tarea_fuente/comandos/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
+            <a href="${tg.url('/tarea_fuente/comandos/delete/%d' % record.id)}" onclick="if (confirm('${_(u'EstÃ\83¡s seguro? Tal vez sÃ\83³lo quieras desactivarlo mejor...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
     </tr>
 </table>
 
     </tr>
 </table>
 
diff --git a/sercom/subcontrollers/tarea_prueba/__init__.py b/sercom/subcontrollers/tarea_prueba/__init__.py
new file mode 100644 (file)
index 0000000..7c2670a
--- /dev/null
@@ -0,0 +1,113 @@
+# vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
+
+#{{{ Imports
+import cherrypy
+from turbogears import controllers, expose, redirect
+from turbogears import validate, flash, error_handler
+from turbogears import validators as V
+from turbogears import widgets as W
+from turbogears import identity
+from turbogears import paginate
+from docutils.core import publish_parts
+from sercom.subcontrollers import validate as val
+from sercom.model import TareaPrueba
+from sqlobject import *
+from comandos import ComandoPruebaController
+#}}}
+
+#{{{ Configuración
+cls = TareaPrueba
+name = 'tarea prueba'
+namepl = 'tareas prueba'
+#}}}
+
+#{{{ Validación
+def validate_get(id):
+    return val.validate_get(cls, name, id)
+
+def validate_set(id, data):
+    return val.validate_set(cls, name, id, data)
+
+def validate_new(data):
+    return val.validate_new(cls, name, data)
+#}}}
+
+#{{{ Formulario
+class TareaPruebaForm(W.TableForm):
+    class Fields(W.WidgetsList):
+        nombre = W.TextField(label=_(u'Nombre'),validator=V.UnicodeString(min=3, max=30, strip=True))
+        descripcion = W.TextField(label=_(u'Descripcion'),
+            validator=V.UnicodeString(not_empty=False, max=255, strip=True))
+    fields = Fields()
+    javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_nombre');")]
+
+form = TareaPruebaForm()
+#}}}
+
+#{{{ Controlador
+class TareaPruebaController(controllers.Controller, identity.SecureResource):
+    """Basic model admin interface"""
+    require = identity.has_permission('admin')
+
+    comandos = ComandoPruebaController()
+
+    @expose()
+    def default(self, tg_errors=None):
+        """handle non exist urls"""
+        raise redirect('list')
+
+    @expose()
+    def index(self):
+        raise redirect('list')
+
+    @expose(template='kid:%s.templates.list' % __name__)
+    @paginate('records')
+    def list(self):
+        """List records in model"""
+        r = cls.select()
+        return dict(records=r, name=name, namepl=namepl)
+
+    @expose(template='kid:%s.templates.new' % __name__)
+    def new(self, **kw):
+        """Create new records in model"""
+        return dict(name=name, namepl=namepl, form=form, values=kw)
+
+    @validate(form=form)
+    @error_handler(new)
+    @expose()
+    def create(self, **kw):
+        """Save or create record to model"""
+        validate_new(kw)
+        flash(_(u'Se creó un nuevo %s.') % name)
+        raise redirect('list')
+
+    @expose(template='kid:%s.templates.edit' % __name__)
+    def edit(self, id, **kw):
+        """Edit record in model"""
+        r = validate_get(id)
+        return dict(name=name, namepl=namepl, record=r, form=form)
+
+    @validate(form=form)
+    @error_handler(edit)
+    @expose()
+    def update(self, id, **kw):
+        """Save or create record to model"""
+        r = validate_set(id, kw)
+        flash(_(u'El %s fue actualizado.') % name)
+        raise redirect('../list')
+
+    @expose(template='kid:%s.templates.show' % __name__)
+    def show(self,id, **kw):
+        """Show record in model"""
+        r = validate_get(id)
+        return dict(name=name, namepl=namepl, record=r)
+
+    @expose()
+    def delete(self, id):
+        """Destroy record in model"""
+        r = validate_get(id)
+        r.destroySelf()
+        flash(_(u'El %s fue eliminado permanentemente.') % name)
+        raise redirect('../list')
+#}}}
+
diff --git a/sercom/subcontrollers/tarea_prueba/comandos/__init__.py b/sercom/subcontrollers/tarea_prueba/comandos/__init__.py
new file mode 100644 (file)
index 0000000..393c780
--- /dev/null
@@ -0,0 +1,140 @@
+# vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
+
+#{{{ Imports
+import cherrypy
+from turbogears import controllers, expose, redirect
+from turbogears import validate, flash, error_handler
+from turbogears import validators as V
+from turbogears import widgets as W
+from turbogears import identity
+from turbogears import paginate
+from docutils.core import publish_parts
+from sercom.subcontrollers import validate as val
+from sercom.model import TareaPrueba, ComandoPrueba, Comando
+from sqlobject import *
+#}}}
+
+#{{{ Configuración
+cls = ComandoPrueba
+name = 'comando prueba'
+namepl = 'comandos prueba'
+#}}}
+
+#{{{ Validación
+def validate_get(id):
+    return val.validate_get(cls, name, id)
+
+def validate_set(id, data):
+    return val.validate_set(cls, name, id, data)
+
+def validate_new(data):
+    return val.validate_new(cls, name, data)
+#}}}
+
+#{{{ Formulario
+class ComandoPruebaForm(W.TableForm):
+    class Fields(W.WidgetsList):
+        tareaID = W.HiddenField()
+        orden = W.TextField(label=_(u'Orden'), validator=V.Int(not_empty=True))
+        comando = W.TextField(label=_(u'Comando'), validator=V.UnicodeString(min=3, max=255, strip=True))
+        descripcion = W.TextField(label=_(u'Descripcion'), validator=V.UnicodeString(min=3, max=255, strip=True))
+        retorno = W.TextField(label=_(u'Retorno'), help_text=u"Codigo de retorno esperado",validator=V.Int(if_empty=0))
+        max_tiempo_cpu = W.TextField(label=_(u'CPU'), help_text=u"Maximo tiempo de CPU que puede utilizar [seg]",validator=V.Int())
+        max_memoria = W.TextField(label=_(u'Memoria'), help_text=u"Maximo cantidad de memoria que puede utilizar [MB]",validator=V.Int())
+        max_tam_archivo = W.TextField(label=_(u'Tam. Archivo'), help_text=u"Maximo tamanio de archivo a crear [MB]",validator=V.Int())
+        max_cant_archivos = W.TextField(label=_(u'Archivos'),validator=V.Int())
+        max_cant_procesos = W.TextField(label=_(u'Procesos'),validator=V.Int())
+        max_locks_memoria = W.TextField(label=_(u'Mem. Locks'),validator=V.Int())
+        terminar_si_falla = W.CheckBox(label=_(u'Terminar si falla'), default=1, validator=V.Bool(if_empty=1))
+        rechazar_si_falla = W.CheckBox(label=_(u'Terminar si falla'), default=1, validator=V.Bool(if_empty=1))
+        archivos_entrada = W.FileField(label=_(u'Archivos Entrada'))
+        archivos_a_comparar = W.FileField(label=_(u'Archivos a Comparar'))
+        archivos_guardar = W.TextField(label=_(u'Archivos a Guardar'))
+        activo = W.CheckBox(label=_(u'Activo'), default=1, validator=V.Bool(if_empty=1))
+    fields = Fields()
+    javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_orden');")]
+
+form = ComandoPruebaForm()
+#}}}
+
+#{{{ Controlador
+class ComandoPruebaController(controllers.Controller, identity.SecureResource):
+    """Basic model admin interface"""
+    require = identity.has_permission('admin')
+
+    @expose(template='kid:%s.templates.list' % __name__)
+    @paginate('records')
+    def list(self, tareaID):
+        """List records in model"""
+        r = cls.select(cls.q.tareaID == tareaID)
+        return dict(records=r, name=name, tareaID=int(tareaID),namepl=namepl)
+
+    @expose(template='kid:%s.templates.new' % __name__)
+    def new(self, tareaID,**kw):
+        """Create new records in model"""
+        form.fields[0].attrs['value'] = tareaID
+        return dict(name=name, namepl=namepl, form=form, values=kw)
+
+    @validate(form=form)
+    @error_handler(new)
+    @expose()
+    def create(self, **kw):
+        """Save or create record to model"""
+        t = TareaPrueba.get(kw['tareaID'])
+        orden = kw['orden']
+        del(kw['orden'])
+        del(kw['tareaID'])
+        if kw['archivos_entrada'].filename:
+            kw['archivos_entrada'] = kw['archivos_entrada'].file.read()
+        else:
+            kw['archivos_entrada'] =  None
+        if kw['archivos_a_comparar'].filename:
+            kw['archivos_a_comparar'] = kw['archivos_a_comparar'].file.read()
+        else:
+            kw['archivos_a_comparar'] =  None
+        # TODO : Hacer ventanita mas amigable para cargar esto.
+        try:
+            kw['archivos_a_guardar'] = tuple(kw['archivos_guardar'].split(','))
+        except:
+            del(kw['archivos_guardar'])
+        t.add_comando(orden, **kw)
+        flash(_(u'Se creó un nuevo %s.') % name)
+        raise redirect('list/%d' % t.id)
+
+    @expose(template='kid:%s.templates.edit' % __name__)
+    def edit(self, id, **kw):
+        """Edit record in model"""
+        r = validate_get(id)
+        r.archivos_guardar = ",".join(r.archivos_a_guardar)
+        return dict(name=name, namepl=namepl, record=r, form=form)
+
+    @validate(form=form)
+    @error_handler(edit)
+    @expose()
+    def update(self, id, **kw):
+        """Save or create record to model"""
+        r = validate_set(id, kw)
+        flash(_(u'El %s fue actualizado.') % name)
+        raise redirect('../list/%d' % r.tarea.id)
+
+    @expose(template='kid:%s.templates.show' % __name__)
+    def show(self,id, **kw):
+        """Show record in model"""
+        r = validate_get(id)
+        if r.observaciones is None:
+            r.obs = ''
+        else:
+            r.obs = publish_parts(r.observaciones, writer_name='html')['html_body']
+        return dict(name=name, namepl=namepl, record=r)
+
+    @expose()
+    def delete(self, id):
+        """Destroy record in model"""
+        r = validate_get(id)
+        tareaID = r.tarea.id
+        r.destroySelf()
+        flash(_(u'El %s fue eliminado permanentemente.') % name)
+        raise redirect('../list/%d' % tareaID)
+
+#}}}
+
diff --git a/sercom/subcontrollers/tarea_prueba/comandos/templates/__init__.py b/sercom/subcontrollers/tarea_prueba/comandos/templates/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/sercom/subcontrollers/tarea_prueba/comandos/templates/edit.kid b/sercom/subcontrollers/tarea_prueba/comandos/templates/edit.kid
new file mode 100644 (file)
index 0000000..9926db4
--- /dev/null
@@ -0,0 +1,19 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>edit</title>
+</head>
+<body>
+
+<h1>Modificación de <span py:replace="name">Objeto</span></h1>
+
+<div py:replace="form(value=record, action=tg.url('/alumno/update/%d' % record.id),
+       submit_text=_(u'Guardar'))">Formulario</div>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/comandos/list/%d' % record.tarea.id)}">Volver (cancela)</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/tarea_prueba/comandos/templates/list.kid b/sercom/subcontrollers/tarea_prueba/comandos/templates/list.kid
new file mode 100644 (file)
index 0000000..ff1f76c
--- /dev/null
@@ -0,0 +1,38 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>list</title>
+</head>
+<body>
+
+<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
+
+<table class="list">
+    <tr>
+        <th>Orden</th>
+        <th>Comando</th>
+        <th>Operaciones</th>
+    </tr>
+    <tr py:for="record in records">
+        <td><span py:replace="record.orden">telefono</span></td>
+        <td><span py:replace="record.comando">telefono</span></td>
+        <td><a href="${tg.url('/tarea_prueba/comandos/edit/%d' % record.id)}">Editar</a>
+            <a href="${tg.url('/tarea_prueba/comandos/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
+    </tr>
+</table>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/comandos/new/%d' % tareaID)}">Agregar</a>
+
+<div py:for="page in tg.paginate.pages">
+    <a py:if="page != tg.paginate.current_page"
+        href="${tg.paginate.get_href(page)}">${page}</a>
+    <b py:if="page == tg.paginate.current_page">${page}</b>
+</div>
+
+</body>
+</html>
+
+<!-- vim: set et sw=4 sts=4 : -->
diff --git a/sercom/subcontrollers/tarea_prueba/comandos/templates/new.kid b/sercom/subcontrollers/tarea_prueba/comandos/templates/new.kid
new file mode 100644 (file)
index 0000000..dec91c8
--- /dev/null
@@ -0,0 +1,18 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>new</title>
+</head>
+<body>
+
+<h1>Crear Nuevo <span py:replace="name">Objeto</span></h1>
+
+<p py:replace="form(action=tg.url('/tarea_prueba/comandos/create'), value=values, submit_text=_('Crear'))">Formulario</p>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/comandos/list')}">Cancelar</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/tarea_prueba/templates/__init__.py b/sercom/subcontrollers/tarea_prueba/templates/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/sercom/subcontrollers/tarea_prueba/templates/edit.kid b/sercom/subcontrollers/tarea_prueba/templates/edit.kid
new file mode 100644 (file)
index 0000000..5666e87
--- /dev/null
@@ -0,0 +1,20 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>edit</title>
+</head>
+<body>
+
+<h1>Modificación de <span py:replace="name">Objeto</span></h1>
+
+<div py:replace="form(value=record, action=tg.url('/tarea_prueba/update/%d' % record.id),
+       submit_text=_(u'Guardar'))">Formulario</div>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/show/%d' % record.id)}">Ver (cancela)</a> |
+<a href="${tg.url('/tarea_prueba/list')}">Volver (cancela)</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/tarea_prueba/templates/list.kid b/sercom/subcontrollers/tarea_prueba/templates/list.kid
new file mode 100644 (file)
index 0000000..676ace7
--- /dev/null
@@ -0,0 +1,40 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>list</title>
+</head>
+<body>
+
+<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
+
+<table class="list">
+    <tr>
+        <th>Nombre</th>
+        <th>Descripcion</th>
+        <th>Operaciones</th>
+    </tr>
+    <tr py:for="record in records">
+        <td><span py:replace="record.nombre">nombre</span></td>
+        <td><span py:replace="record.descripcion">nota</span></td>
+        <td>
+            <a href="${tg.url('/tarea_prueba/comandos/list/%d' % record.id)}">Comandos</a>
+            <a href="${tg.url('/tarea_prueba/edit/%d' % record.id)}">Editar</a>
+            <a href="${tg.url('/tarea_prueba/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
+    </tr>
+</table>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/new')}">Agregar</a>
+
+<div py:for="page in tg.paginate.pages">
+    <a py:if="page != tg.paginate.current_page"
+        href="${tg.paginate.get_href(page)}">${page}</a>
+    <b py:if="page == tg.paginate.current_page">${page}</b>
+</div>
+
+</body>
+</html>
+
+<!-- vim: set et sw=4 sts=4 : -->
diff --git a/sercom/subcontrollers/tarea_prueba/templates/new.kid b/sercom/subcontrollers/tarea_prueba/templates/new.kid
new file mode 100644 (file)
index 0000000..e52c218
--- /dev/null
@@ -0,0 +1,18 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>new</title>
+</head>
+<body>
+
+<h1>Crear Nuevo <span py:replace="name">Objeto</span></h1>
+
+<p py:replace="form(action=tg.url('/tarea_prueba/create'), value=values, submit_text=_('Crear'))">Formulario</p>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/list')}">Cancelar</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/tarea_prueba/templates/show.kid b/sercom/subcontrollers/tarea_prueba/templates/show.kid
new file mode 100644 (file)
index 0000000..7a57934
--- /dev/null
@@ -0,0 +1,26 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>show</title>
+</head>
+<body>
+
+<table class="show">
+    <tr>
+        <th>Nombre:</th>
+       <td><span py:replace="record.nombre">nombre</span></td>
+    </tr>
+    <tr>
+        <th>Descripcion:</th>
+       <td><span py:replace="record.descripcion">nombre</span></td>
+    </tr>
+</table>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/edit/%d' % record.id)}">Editar</a> |
+<a href="${tg.url('/tarea_prueba/list')}">Volver</a>
+
+</body>
+</html>