Re: Tutorial for MR

2006-05-04 Thread Beorn
I submitted a ticket about this (I believe) 2 weeks ago: http://code.djangoproject.com/ticket/1658 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us

Best way to prepare viewdata for templates?

2006-05-27 Thread Beorn
Hi guys, I've got models like this: class Category(model.Model): pass class City(model.Model): pass class Listing(model.Model): city = model.ForeignKey(City) categories = model.ManyToMany(Category, related_