summaryrefslogtreecommitdiff
path: root/app/ccg_notes/forms.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-07-08 09:36:58 -0400
committerluxagraf <sng@luxagraf.net>2018-07-08 09:36:58 -0400
commita34140c05956d5dfc6ef38d264bdcd7e32d4e22d (patch)
tree7fc5a8e4cddd498bc9b967bd8d397f1cceaa68d1 /app/ccg_notes/forms.py
parent6a2393e6819ea09aeb559354a69746750aa8cbdf (diff)
moved ccg notes to unused
Diffstat (limited to 'app/ccg_notes/forms.py')
-rw-r--r--app/ccg_notes/forms.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/ccg_notes/forms.py b/app/ccg_notes/forms.py
deleted file mode 100644
index 0934306..0000000
--- a/app/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}),
- }