Fix #6232 - Remove pagination on categories and discounts (#6237)

This commit is contained in:
Phin Wolkwitz
2026-06-02 15:58:41 +02:00
committed by GitHub
parent d555b23275
commit 6f1512f200
2 changed files with 3 additions and 3 deletions

View File

@@ -335,7 +335,7 @@ class CategoryCreate(EventPermissionRequiredMixin, CreateView):
return super().form_invalid(form)
class CategoryList(PaginationMixin, ListView):
class CategoryList(ListView):
model = ItemCategory
context_object_name = 'categories'
template_name = 'pretixcontrol/items/categories.html'