[FIXED] How Can I Sort These Many To Many Values Without a Through Table?
Issue I am trying to compare the values of two manytomany fields…this mostly works… author_confirm = Author.objects.filter(id=self.object.update_reader_id).values_list(‘author_confirm’).order_by(‘pk’) author = Author.objects.filter(id=self.object.update_reader_id).values_list(‘author’).order_by(‘pk’)…