From d3c5b5b80dba30dd5e137cf80aeceb356323214e Mon Sep 17 00:00:00 2001 From: Ross Date: Wed, 11 Aug 2021 19:33:16 +0100 Subject: [PATCH] . --- longs/forms.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/longs/forms.py b/longs/forms.py index 9c52e1fc..9db5c735 100755 --- a/longs/forms.py +++ b/longs/forms.py @@ -152,8 +152,14 @@ class LongForm(ModelForm): # "normal": RadioSelect( # choices=[(True, 'Yes'), # (False, 'No')]) - "feedback" : TinyMCE(attrs={'cols': 80, 'rows': 30}), - "mark_scheme" : TinyMCE(attrs={'cols': 80, 'rows': 30}) + "feedback" : TinyMCE(attrs={'cols': 80, 'rows': 20}), + "mark_scheme" : TinyMCE(attrs={'cols': 80, 'rows': 30}), + "description" : Textarea(attrs={'cols': 80, 'rows': 5}), + "history" : Textarea(attrs={'cols': 80, 'rows': 5}), + "model_observation" : Textarea(attrs={'cols': 80, 'rows': 5}), + "model_interpretation" : Textarea(attrs={'cols': 80, 'rows': 5}), + "model_differential_diagnosis" : Textarea(attrs={'cols': 80, 'rows': 5}), + "model_management" : Textarea(attrs={'cols': 80, 'rows': 5}), } def save(self, commit=True):