make rapid form crispy
This commit is contained in:
+6
-1
@@ -161,7 +161,12 @@ class Rapid(QuestionBase):
|
||||
question = models.TextField(null=True, blank=True)
|
||||
history = models.TextField(null=True, blank=True)
|
||||
|
||||
normal = models.BooleanField(default=False, help_text="Tick if true")
|
||||
NORMAL_CHOICES = (
|
||||
(True, "Normal"),
|
||||
(False, "Abnormal"),
|
||||
)
|
||||
|
||||
normal = models.BooleanField(default=False, help_text="Defines if a question is normal/abnormal", choices=NORMAL_CHOICES)
|
||||
|
||||
NONE = "NONE"
|
||||
LEFT = "LEFT"
|
||||
|
||||
Reference in New Issue
Block a user