Skip to content

Instantly share code, notes, and snippets.

@lqc
Created January 15, 2011 18:43
Show Gist options
  • Save lqc/781132 to your computer and use it in GitHub Desktop.
Save lqc/781132 to your computer and use it in GitHub Desktop.
@login_required
def personal_items(request, **kwargs):
qs = kwargs['queryset']
qs = qs.filter(author=request.user)
# i inne filtry...
kwargs['queryset'] = qs
return django.views.generic.list_detail.object_list(request, **kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment