I'm looking for a way to make a redirect from one url to another with query string parameter.
Is it possible to get a redirect from /orders/ to /orders-new/?queryParam=1
How should I change RedirectView in a first line?
url(r'^orders/$', RedirectView.as_view(pattern_name='orders-new'),
name='orders'),
url(r'^orders-new/$', orders_list_new, name='orders-new'),
/orders/?orders-newview without query string