Implement viewing and altering trends

This commit is contained in:
2022-12-18 15:10:28 +00:00
parent b882ba15d0
commit 3a39181261
6 changed files with 160 additions and 13 deletions

View File

@@ -126,6 +126,8 @@ class ObjectList(RestrictedViewMixin, ObjectNameMixin, ListView):
for arg in self.list_url_args:
if arg in locals():
list_url_args[arg] = locals()[arg]
elif arg in kwargs:
list_url_args[arg] = kwargs[arg]
orig_type = type
if type == "page":