I have a model that uses the Meta ordering property to make sure that all views that use it display things in the same order.
However, I have one method that needs to use the distinct()
method - this does not work after ordering is applied. Is there a built in way to retrieve the original queryset before ordering is applied, or do I need to write a custom Manager class to allow me to do this.