view_list.html: Changed del_task to del_tasks, views.py: Changed del_task back to del_tasks

This commit is contained in:
shantisuresh01 2016-11-30 16:32:22 -05:00
parent 9bbc09dba8
commit 10df9f2cdf
7 changed files with 17 additions and 14 deletions

View file

@ -2,6 +2,8 @@ from django import forms
from django.forms import ModelForm
from django.contrib.auth.models import Group
from todo.models import Item, List
from django.contrib.auth import get_user_model
class AddListForm(ModelForm):