My current project involves Django and I have a model with a booleanField that appears as a checkbox in the form.
However, I am facing an issue where the checkbox is sticking to the label.
I have attempted to select the HTML elements and add specific CSS, but the two elements continue to move together...
Current Output: [ ]I have read... (the two elements are stuck together)
Desired Output: [ ]......I have read...
models.py
class Aveugle(models.Model):
unb_ide = models.AutoField(primary_key=True)
unb_val = models.BooleanField("I have read ITBM procedure and want to unblind treatment", null=True, blank=True)
forms.py
unb_val = forms.BooleanField(label = _("I have read ITBM procedure and want to unblind treatment"))