I'm using a Django admin StackedInline, as follows:
class BookInline(admin.StackedInline):
model = Book.subject.through
verbose_name = 'Book'
verbose_name_plural = 'Books with this subject'
class SubjectAdmin(admin.ModelAdmin):
inlines = [
BookInline,
]
It all works, but the header is pretty ugly:
Books With This Subject
Book: Book_subject object
Anyone know how I can get rid of, or change, the Book_subject object
part?
thanks!