diff options
Diffstat (limited to 'app/unused_apps/ccg_notes/forms.py')
-rw-r--r-- | app/unused_apps/ccg_notes/forms.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/app/unused_apps/ccg_notes/forms.py b/app/unused_apps/ccg_notes/forms.py deleted file mode 100644 index 0934306..0000000 --- a/app/unused_apps/ccg_notes/forms.py +++ /dev/null @@ -1,17 +0,0 @@ -from django import forms -import dal -from dal_select2_taggit.widgets import TaggitSelect2 -from .models import CcgNote -from dal import autocomplete - - -class CcgNoteForm(autocomplete.FutureModelForm): - class Meta: - model = CcgNote - fields = ('tags',) - widgets = { - 'tags': autocomplete.TaggitSelect2( - 'tag-autocomplete' - ), - 'body_markdown': forms.Textarea(attrs={'rows': 18, 'cols': 60}), - } |