From ee7c20eb641d47b9344271fbe38dd8bdaacedda5 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 5 May 2011 01:04:43 -0400 Subject: [PATCH] Adding a brief form. --- notes/forms.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/notes/forms.py b/notes/forms.py index f9d0e38..424b22e 100644 --- a/notes/forms.py +++ b/notes/forms.py @@ -6,3 +6,7 @@ class NoteForm(ModelForm): model = Note fields=['content', 'markup', 'topic','date', 'public'] +class BriefNoteForm(ModelForm): + class Meta: + model = Note + fields=['content', 'topic'] -- 2.39.5