Add user permission checks for series editing and enhance author display method

This commit is contained in:
Ross
2026-02-09 12:27:20 +00:00
parent 23f33ac7ae
commit 3c8238d737
4 changed files with 26 additions and 12 deletions
+3
View File
@@ -70,6 +70,9 @@ class AuthorMixin():
return self.author.filter(id=user.id).exists()
def get_author_display(self):
return ", ".join([i.username for i in self.get_author_objects()])
class UserConfigurablePaginationMixin:
default_per_page = 25