I do order by with request.GET.get('order_by',None)
but
Now I want to trade with more columns.
Ex: https://www.example.com/?order_by=col1&order_by=-col2
and I want to get values.
columns = request.GET.getlist('order_by')
Then,
References.objects.order_by(*columns)
How do I create the above URL?
I tried to add the values I received with Request.GET.get
to the list, but it was unreasonable. Because the same columns were added again.