From 005e6d51edf1f14114756ce347ba17c18afa51d1 Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 6 Dec 2020 21:42:36 +0000 Subject: [PATCH] add to form --- anatomy/forms.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/anatomy/forms.py b/anatomy/forms.py index 3a3921db..32cf3265 100644 --- a/anatomy/forms.py +++ b/anatomy/forms.py @@ -87,7 +87,16 @@ class AnatomyQuestionForm(ModelForm): class Meta: model = AnatomyQuestion - fields = ["question_type", "image", "description"] + fields = [ + "question_type", + "image", + "region", + "modality", + "structure", + "examination", + "body_part", + "description", + ] widgets = {}