Posts for Category Projects

 

Django: Sort filter_name-list of a ManyToManyRelation in Admin

2008 December 28

Assume you have a Category model and a Post model. In the Post model the Category is related using a ManyToManyField

category = models.ManyToManyField(Category) 

In the admin you want ...

read more »