aboutsummaryrefslogtreecommitdiff
path: root/apps/notes/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/notes/forms.py')
-rw-r--r--apps/notes/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/notes/forms.py b/apps/notes/forms.py
index 6a27ec9..a7a4f8d 100644
--- a/apps/notes/forms.py
+++ b/apps/notes/forms.py
@@ -7,9 +7,9 @@ from .models import Note
class NoteForm(forms.ModelForm):
class Meta:
model = Note
- fields = ['title', 'body_markdown', 'url', 'tags']
+ fields = ['title', 'body_text', 'body_html', 'body_qjson', 'notebook', 'url', 'tags']
labels = {
- "body_markdown": _("Note"),
+ "body": _("Note"),
}
def __init__(self, *args, **kwargs):