wuyue92tree / django-adminlte-ui

django admin theme base on adminlte ❤️

Home Page:https://wuyue92tree.github.io/django-adminlte-ui/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Display multiple fields on the same line

ardin opened this issue · comments

commented

There is problem with displaying inline fields (line is breaking)

class TestAdmin(admin.ModelAdmin):
    fields = (
        'field1',
        ('field2', 'field3'),
        'field4'
    )