I am learning Django, usually I use urls like www.mysite.com/post/1, and I have understood them because they are well described in the documentation. Now I need to create a url like: www.mysite.com/calendar/?day=21&?month=12&year=2020, I don't understand what should I write in my ulrpatterns list. I have tried something like this:
url(r'^search/(?P<parameter>\w+)', views.calendar, name='calendar')
but it doesn't work. What should I write as regex expression?
Thanks