Add blank description to todo list creation and editing

This is a field shown on the general_form.html, and shows up as
@@@INVALID@@@ in development environments.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2012-07-23 21:48:26 -05:00
parent 9ab460c53a
commit 5b176fc672

View File

@ -88,6 +88,7 @@ def add(request):
page_dict = {
'title': 'Add Todo List',
'description': '',
'form': form,
'submit_text': 'Create List'
}
@ -110,6 +111,7 @@ def edit(request, list_id):
page_dict = {
'title': 'Edit Todo List: %s' % todo_list.name,
'description': '',
'form': form,
'submit_text': 'Save List'
}