I'm trying to pass a parameter via GET on the URL through the Django backend, but I'm not getting it.
My url for the page I want to pass the parameter to is
url(r'^(?P<short_name>\w+)/schedule/$', schedule_views.schedule, name='schedule'),
And I wanted it, right after I did things in the call view, it rendered the page with the link schedule /? date = 2018-03-01, for example.
I know I can get the GET through the request.GET.get, however I would like to pass this parameter back to the front end.
Thank you!