I want to add list filter option by a group for unrelated models in django. How to do that? For example if i have task logs like
class TaskLogs(AuditModel):
Status = models.BooleanFiled(default=0)
i want to filter all tasklogs by a group which has group of users. Tasklog will created by a user.
