编写应用视图
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the polls index.")polls/
__init__.py
admin.py
apps.py
migrations/
__init__.py
models.py
tests.py
urls.py
views.pyLast updated