Django can I split tabularinline fields into multiple lines?

django, django-admin

Solution

Use can use a `StackedInline` instead

Problem

I have an inline with many fields to show in an admin.tabularinline. what is the easiest way to split those fields into multiple lines?

Original source