Here is my code for a school project
http://dpaste.com/434311/

The code works fine, on studentadmin list page, I get filter for
classes
which is good but as you can see my project is multi-tenant so in
filter
area I want to show only the classes for the school the current user
is
logged in (tracked thru sessions) but right now I can see list of all
classes from all schools

so I want to replace this line
    list_filter   = ['xclass']

with something like
    list_filter   =
Class.objects.filter(school=request.session['school_id'])

how can I do it ?

-- 
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