From debeef56b9c52d91ba87f278715dbbafd38bf4be Mon Sep 17 00:00:00 2001 From: Ross Date: Fri, 20 Aug 2021 21:50:42 +0100 Subject: [PATCH] . --- sbas/admin.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sbas/admin.py b/sbas/admin.py index 08844646..0bed3534 100644 --- a/sbas/admin.py +++ b/sbas/admin.py @@ -27,16 +27,16 @@ class QuestionAdminForm(ModelForm): # (False, 'No')]) "stem" : TinyMCE(attrs={'cols': 80, 'rows': 30}), "feedback" : TinyMCE(attrs={'cols': 80, 'rows': 30}), - "a_answer" : TinyMCE(attrs={'cols': 80, 'rows': 5}, mce_attrs={'height': 120}), - "a_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 5}), - "b_answer" : TinyMCE(attrs={'cols': 80, 'rows': 4}), - "c_answer" : TinyMCE(attrs={'cols': 80, 'rows': 4}), - "d_answer" : TinyMCE(attrs={'cols': 80, 'rows': 4}), - "e_answer" : TinyMCE(attrs={'cols': 80, 'rows': 4}), - "b_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 4}), - "c_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 4}), - "d_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 4}), - "e_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 4}), + "a_answer" : TinyMCE(attrs={'cols': 80, 'rows': 5}, mce_attrs={'height': 140}), + "a_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 5}, mce_attrs={'height': 140}), + "b_answer" : TinyMCE(attrs={'cols': 80, 'rows': 4}, mce_attrs={'height': 140}), + "c_answer" : TinyMCE(attrs={'cols': 80, 'rows': 4}, mce_attrs={'height': 140}), + "d_answer" : TinyMCE(attrs={'cols': 80, 'rows': 4}, mce_attrs={'height': 140}), + "e_answer" : TinyMCE(attrs={'cols': 80, 'rows': 4}, mce_attrs={'height': 140}), + "b_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 4}, mce_attrs={'height': 140}), + "c_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 4}, mce_attrs={'height': 140}), + "d_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 4}, mce_attrs={'height': 140}), + "e_feedback" : TinyMCE(attrs={'cols': 80, 'rows': 4}, mce_attrs={'height': 140}), }