[Fixed]-Django – Appending model parameter to url

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

👤Gocht

Leave a comment