Skip to content

Instantly share code, notes, and snippets.

@walison17
Last active October 4, 2019 02:10
Show Gist options
  • Save walison17/8d32d445bd0f56b12d0ca43bc8cc5bad to your computer and use it in GitHub Desktop.
Save walison17/8d32d445bd0f56b12d0ca43bc8cc5bad to your computer and use it in GitHub Desktop.
class UserObjectsMixin:
def get_queryset(self):
qs = super().get_queryset()
return qs.filter(usuario=self.request.user)
class CoisasListView(LoginRequiredMixin, UserObjectsMixon, ListView):
login_url = ''
redirect_field_name = 'redirect_to'
model = Coisa
context_object_name = "coisas"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment