Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Form-rows in inline layout incorrect #241

Open
DeD1rk opened this issue Oct 25, 2023 · 0 comments
Open

Form-rows in inline layout incorrect #241

DeD1rk opened this issue Oct 25, 2023 · 0 comments

Comments

@DeD1rk
Copy link

DeD1rk commented Oct 25, 2023

Since django/django#16678, (I narrowed the main cause down to removal of float: left on fieldset .fieldBox here), form rows are not being rendered side-by-side.

Here is the relevant part of my code:

class ReportColumnInline(
    nested_admin.SortableHiddenMixin, nested_admin.NestedStackedPolymorphicInline
):
    class JSONResultColumnInline(
        nested_admin.SortableHiddenMixin, nested_admin.NestedStackedPolymorphicInline.Child
    ):
        model = JSONResultColumn


        fields = (("name", "result_type", "path"),)
    ...

Which shows up underneath each other, instead of inline:

image

If I find some more time I might add some more precise reproduction steps.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant