File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -153,15 +153,15 @@ class Migration(migrations.Migration):
153
153
models .TextField (
154
154
blank = True ,
155
155
default = "" ,
156
- help_text = " Used only with ' Choices' question type" ,
156
+ help_text = ' Used only with " Choices" question type' ,
157
157
verbose_name = "List all available options, separated with semicolon (;)" ,
158
158
),
159
159
),
160
160
(
161
161
"is_multiple_choice" ,
162
162
models .BooleanField (
163
163
default = False ,
164
- help_text = " Used only with ' Choices' question type" ,
164
+ help_text = ' Used only with " Choices" question type' ,
165
165
verbose_name = "Are there multiple choices allowed?" ,
166
166
),
167
167
),
Original file line number Diff line number Diff line change @@ -91,12 +91,12 @@ class Question(models.Model):
91
91
blank = True ,
92
92
default = "" ,
93
93
verbose_name = _ ("List all available options, separated with semicolon (;)" ),
94
- help_text = _ (" Used only with ' Choices' question type" ),
94
+ help_text = _ (' Used only with " Choices" question type' ),
95
95
)
96
96
is_multiple_choice = models .BooleanField (
97
97
default = False ,
98
98
verbose_name = _ ("Are there multiple choices allowed?" ),
99
- help_text = _ (" Used only with ' Choices' question type" ),
99
+ help_text = _ (' Used only with " Choices" question type' ),
100
100
)
101
101
order = models .PositiveIntegerField (help_text = _ ("Position of the question" ))
102
102
You can’t perform that action at this time.
0 commit comments