Re: another template question

2006-03-10 Thread Russell Keith-Magee
On 3/11/06, Glenn Tenney <[EMAIL PROTECTED]> wrote: > > In my templates, I'd like to be able to (for example): > Given an "object_list" of rateable things, I'd like to > then get the "Rating" valules for the current user. > I'm trying to figure out a good way to do this. > > I don't see any way in

another template question

2006-03-10 Thread Glenn Tenney
In my first Django app I've got the following "rough" model (not real code, but enough to show what I mean): class Rateable some stuff common to all "Rateable" objects class Rating who = ForeignKey(User) what = ForeignKey(Rateable) values = ... class People(Rateab