2008-11-03から1日間の記事一覧

Hello, Django!

hello_view.py from django.http import HttpResponse def hello(request): message="<html><body>Hello, Django!</body></html>" return HttpResponse(message) urls.py from django.conf.urls.defaults import * from hello_view import * # Uncomment the next two lines to enable …