﻿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	nobody	"For a single checkbox, styles align the help under the checkbox:

...


When the checkbox appears with any other field in the same line, this is undone:

...

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.)"	Bug	new	contrib.admin	dev	Normal				Unreviewed	0	0	0	0	0	0
