7 lines
177 B
Python
7 lines
177 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
|
|
def index(request):
|
|
return HttpResponse("<h1>Hello and welcome to my first <u>Django App</u> project!</h1>")
|