Ordre par Listview Django

class Reviews(ListView):
    model = ProductReview
    paginate_by = 50
    template_name = 'review_system/reviews.html'
	#add ordering: the least before the attribute means decreasing order
    ordering = ['-date_created']
BlueMoon