added home_page() FBV to apps.lists.views; added HomePageTest() model to .tests; installed django-stubs & related dependencies

This commit is contained in:
Disco DeDisco
2025-12-30 16:15:55 -05:00
parent b7d3535402
commit d4c00424f5
3 changed files with 13 additions and 5 deletions

View File

@@ -1,3 +1,4 @@
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>')