Revision 2 as of 2009-02-24 12:36:32

Clear message

Hello, world

   1 from django.http import HttpResponse
   2 
   3 def hello(request):
   4     html="""<html>
   5     <body>
   6     <h1>Hello, world</h1>
   7     </body>
   8     </html>
   9     """
  10     return(HttpResponse(html))

views.py

vojicu

   1     (r'^hello/$', views.hello)