From: Seth Woodworth Date: Thu, 21 Mar 2013 16:44:46 +0000 (-0400) Subject: add TODO comment for NoteForm in view handling of invalid forms X-Git-Tag: release-20150131~483^2~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f7997a1ea085814e288bfc712133df181ee75783;p=oweals%2Fkarmaworld.git add TODO comment for NoteForm in view handling of invalid forms --- diff --git a/karmaworld/apps/notes/views.py b/karmaworld/apps/notes/views.py index 87933a4..50c301a 100644 --- a/karmaworld/apps/notes/views.py +++ b/karmaworld/apps/notes/views.py @@ -24,6 +24,7 @@ class NoteSaveView(FormView, SingleObjectMixin): behaves the same as NoteDetailView, except for saving the NoteForm ModelForm """ + # TODO: implement def form_invalid for returning a form with input and error form_class = NoteForm model = Note template_name = 'notes/note_detail.html'