﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
35386	Incorrect checkbox help text alignment in multi-field rows	Adam Johnson	Adam Johnson	"For a single checkbox, styles align the help under the checkbox:

[[Image(https://code.djangoproject.com/raw-attachment/ticket/35386/Xnapper-2024-04-16-10.31.32.png, 558px)]]


When the checkbox appears with any other field in the same line, this is undone:

[[Image(https://code.djangoproject.com/raw-attachment/ticket/35386/Xnapper-2024-04-16-10.31.15.png, 592px)]]

Example admin:

{{{
from django.contrib import admin
from example.models import Switcher


class SwitcherAdmin(admin.ModelAdmin):
    fieldsets = [
        (
            None,
            {
                ""fields"": [
                    (""up"", ""down""),
                ],
            },
        ),
    ]


admin.site.register(Switcher, SwitcherAdmin)
}}}

(It doesn’t matter if the other field is a checkbox or not.)

Changing `fieldset.html` so `checkbox-row` is applied unconditionally to checkbox-containing field boxes fixes this regression, plus #34994:

[[Image(https://code.djangoproject.com/raw-attachment/ticket/35386/Xnapper-2024-04-16-10.31.01.png, 562px)]]"	Bug	closed	contrib.admin	4.2	Normal	fixed		Tom Carrick	Ready for checkin	1	0	0	0	0	1
