I have a model with many, say, fields CharField, which I would like to edit in the admin panel.
CharField
The problem is that each field occupies one row. How can I make them appear like this (horizontally): (source: djangoproject.com )
(they are not foreign keys)
Django 1.2 has ListEdit extension for admin
Here is how you use it:
class AccountAdmin(admin.ModelAdmin): list_display = ( 'Name','Type') list_editable = ( 'Type', )
And here is what it looks like:
(source: v-lad.org )