According to the current Django 4.2 documentation, this
class FlatPageAdmin(admin.ModelAdmin):
fields = [("url", "title"), "content"]
should display "url" and "title" on the same line - and it does in our project. However, in the same project, when using VersionAdmin (from django-reversion) instead of admin.ModelAdmin, everything works as expected with Django 4.1.8 but in Django 4.2, additional
blocks cause every field to be on its on new line. Sorry if this is a known problem.
According to the current Django 4.2 documentation, this
should display "url" and "title" on the same line - and it does in our project. However, in the same project, when using VersionAdmin (from django-reversion) instead of admin.ModelAdmin, everything works as expected with Django 4.1.8 but in Django 4.2, additional
That is definitely not expected or known. I'd take a PR to fix.