Re: m2m in views

2010-01-13 Thread Tomasz ZieliƄski
On 12 Sty, 23:24, shaner wrote: > I'm trying to make a model's detail view, take movies for example; > actors are m2m to movies > > this works but it doesn't feel right is there, i pass this context to > the template where i for loop through the actor list > > >>> Movie.objects.filter(pk=movie_i

m2m in views

2010-01-12 Thread shaner
I'm trying to make a model's detail view, take movies for example; actors are m2m to movies this works but it doesn't feel right is there, i pass this context to the template where i for loop through the actor list >>> Movie.objects.filter(pk=movie_id)[0].character.all() [, ] -- You received thi