﻿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
36053	FilteredSelectMultiple label to the right of widget on a ModelMultipleChoiceField	Harsh Malviya	Dani Fornons	"**Description:**
I am using a django forms widget FilteredSelectMultiple, It seems the CSS for the same is not on the right place. It's showing the label of the widget to the right side.

**P.S.** This is only happening in the Django Versions >= 5.0, For lower versions than 5.0 it's working fine i.e Django==4.2.17

**Code Snippet:**
{{{
from django import forms
from models import Address
from django.contrib.admin.widgets import FilteredSelectMultiple

class UserForm(forms.ModelForm):
    address = forms.ModelMultipleChoiceField(
        queryset= Address.objects.all(),
        widget=FilteredSelectMultiple(""Address"", is_stacked=False),
        required=False
    )
}}}

Please check the attached images for different versions:

**Requisite:**
Django Version: 5.1.4
Python Version: 3.11.10
Operating System: macOS
Django Installation Method: pip install Django"	Bug	closed	contrib.admin	5.0	Normal	fixed	css, forms, widget, filter, selectmultiple, django, admin	Antoliny	Ready for checkin	1	0	0	0	1	1
