I am using django 1.4 and I have a many2many field, so when creating the admin site I wanted to add this field as an inline, here is some code:
class SummaryInli
Additionally, if you do not want the ability to add/delete the rows, you can add these definitions.
def has_add_permission(self, request, obj=None): return False def has_delete_permission(self, request, obj=None): return False