Diferencia entre revisiones de «Usuario:Lmorillas/desarrollo web servidor/web2py/intro»
De WikiEducator
(Página creada con '{{MiTitulo|Introducción }} == Instalar == * Descargar / descomprimir * Preparar un entorno limpio * Ejecutar web2py * Clave de admin == Crear nueva app == * Creación de nuev…') |
|||
Línea 13: | Línea 13: | ||
def index(): | def index(): | ||
return dict(mensaje="Hola a todos!") | return dict(mensaje="Hola a todos!") | ||
+ | |||
+ | == default/index.html == | ||
+ | <source lang="html4strict"> | ||
+ | <html> | ||
+ | <head> | ||
+ | <title>Primera app</title> | ||
+ | </head> | ||
+ | <body> | ||
+ | <br/> | ||
+ | <h1>{{=mensaje}}</h1> | ||
+ | </body> | ||
+ | </html> | ||
+ | </source> |
Revisión de 07:54 19 nov 2013
Instalar
- Descargar / descomprimir
- Preparar un entorno limpio
- Ejecutar web2py
- Clave de admin
Crear nueva app
- Creación de nueva app desde la interfaz administrativa
default.py
def index(): return dict(mensaje="Hola a todos!")
default/index.html
<html> <head> <title>Primera app</title> </head> <body> <br/> <h1>{{=mensaje}}</h1> </body> </html>