MrMika96
Results
1
comments of
MrMika96
I managed to add pagination to StackedInline by doing this ```python class YourAdminInline(InlinePaginated, admin.StackedInline): model = YourModel per_page = 10 template = f'{BASE_DIR}/templates/stacked_paginated.html' #path to your template ``` And then...