Creating my first view
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
from django.shortcuts import render
|
from django.shortcuts import render
|
||||||
|
from django.http import HttpResponse
|
||||||
|
|
||||||
# Create your views here.
|
# Create your views here.
|
||||||
|
def project_list(request):
|
||||||
|
msg = "<h1>Hello, World!</h1>"
|
||||||
|
return HttpResponse(msg)
|
||||||
|
|||||||
Reference in New Issue
Block a user