From 3991c0b04c3d956ad85899821fd8d05e93745591 Mon Sep 17 00:00:00 2001 From: Ross Date: Tue, 26 Apr 2022 20:54:52 +0100 Subject: [PATCH] . --- atlas/forms.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/atlas/forms.py b/atlas/forms.py index a76ece05..963977a8 100755 --- a/atlas/forms.py +++ b/atlas/forms.py @@ -55,7 +55,7 @@ class ConditionForm(ModelForm): class CaseCollectionForm(ModelForm): class Meta: model = CaseCollection - exclude = ["cases", "author"] + exclude = ["cases", "valid_users"] def __init__(self, *args, **kwargs): self.user = kwargs.pop( @@ -413,9 +413,9 @@ class CidReportAnswerForm(ModelForm): "answer": Textarea(attrs={"cols": 100, "rows": 5}), } - help_texts = { - "answer": "Write your answer in here." - } + #help_texts = { + # "answer": "Write your answer in here." + #} def __init__(self, *args, **kwargs): super(CidReportAnswerForm, self).__init__(*args, **kwargs)