blob: c0396147065d1e82983b9e6a974f4d65990efe48 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse("Hello, world. You're at the index")
|