Hi all,
Django documentation states that the inlines inherit same functionality as modeladmin so I want to enable paging on an inline but it doesn’t appear to work. This is the code for my inline, is the syntax incorrect?? class CustomerCardsInline(admin.TabularInline): model = CustomerCards verbose_name = 'Account Cards' ordering = ('cc_number',) extra = 0 list_per_page = 50 fields = ['account', 'cc_number', 'cc_effective_dt', 'cc_expire_dt', 'cc_closed_dt', 'cc_frozen_dt', 'cc_card_printed'] Thanks! Jay --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---