First unit test and view function

This commit is contained in:
2024-10-23 13:03:57 -06:00
parent e373ec5d69
commit 285725ffdd
2 changed files with 13 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def home_page(request):
return HttpResponse("<html><title>To-Do lists</title></html>")