I'm trying to create a comment system on my site. I'm using MPTT tree model and Django. Basically I would like to show the most recent post on top. When I try : order_insertion_by=['-creation_date'] I get this error : Comment has no field named '-creation_date'
obviously it doesn't get that the - is for DESC order.
Anyone knows how to sort a MPTT tree by DESC order ? Thanks