1👍
✅
You will need an url like this:
url(r'^(?P<first_name>\w+)-(?P<last_name>\w+)/$', views.your_view),
You can see docs here
Source:stackexchange.com
1👍
You will need an url like this:
url(r'^(?P<first_name>\w+)-(?P<last_name>\w+)/$', views.your_view),
You can see docs here