8 lines
174 B
Python
8 lines
174 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
def index(request):
|
|
return HttpResponse("You're at the Blogs index")
|
|
|
|
# Create your views here.
|