You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: