sreekanth

Results 2 comments of sreekanth

from django.shortcuts import render,redirect from django.http import HttpResponse from .models import List from .forms import ListForm from django.contrib import messages def index(request): if request.method == 'POST': form = ListForm (request.POST...

whenever I click the submit button it gives an **The view todo_list.views.index didn't return an HttpResponse object. It returned None instead.** how can i correct it..? can any one help...