In Django, calling object.manytomany.all().reverse(), and its template equivalent, object.manytomany.all.reverse, don't seem to work for many-to-many relationships.
How do I reverse a list of results of a many-to-many relationship?
|
In Django, calling How do I reverse a list of results of a many-to-many relationship?
| |||
|
feedback
|
|
You may be going about this wrong or maybe I misunderstand your code snippet. Say you have a Book Model where an instance of a Book can have multiple authors.
Now this will return a
Now that you have the authors and those authors are in the form of a QuerySet, you can do any normal QuerySet manipulation including reversing.
Remember that reversing something that isn't ordered doesn't mean much so you may want to consider using | |||||
feedback
|