From 79845a9cfa7490e1df980565502bc3f24636e30a Mon Sep 17 00:00:00 2001 From: Ross Date: Tue, 26 Apr 2022 20:44:44 +0100 Subject: [PATCH] . --- atlas/forms.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/atlas/forms.py b/atlas/forms.py index 72b58b62..3c5aba1f 100755 --- a/atlas/forms.py +++ b/atlas/forms.py @@ -410,7 +410,11 @@ class CidReportAnswerForm(ModelForm): # (False, 'No')]) # "findings": TinyMCE(attrs={"cols": 80, "rows": 20}), # "mark_scheme": TinyMCE(attrs={"cols": 80, "rows": 30}), - "answer": Textarea(attrs={"cols": 100, "rows": 30}), + "answer": Textarea(attrs={"cols": 100, "rows": 10}), + } + + help_texts = { + "answer": "Write your answer in here." } def __init__(self, *args, **kwargs):