Assuming you know you'll always be filtering Entry objects (probably
true, given the view's name) and using the same template, here's what
I'd do:

===urls.py===

urlpatterns = patterns('',
    url(r'^entries/$', view_entry_list),
)

===views.py===

def view_entry_list(request):
    queryset = Entry.objects.filter(user=request.user)
    return object_list(request, queryset,
template_name='entry_list.html')

-Justin
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to