This commit is contained in:
Ross
2021-08-20 21:50:42 +01:00
parent 4d69c26c5e
commit debeef56b9
+10 -10
View File
@@ -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}),
}