Django: ValueError at/ “The view To_do_list_app.views.home didn't return an HttpResponse object. It returned None instead.”
问题 Please, I am a newbie, if I didn't ask my question well, let me know. I am working on a To-Do List app. Anytime, I add a new task and time to the form on my web app and submit, I get the following error: ValueError at / The view To_do_list_app.views.home didn't return an HttpResponse object. It returned None instead. Below is my views.py file from django.http import HttpResponse from django.shortcuts import render,redirect from .forms import ListForm from .models import List def home(request)