When I try to use a link in my Django template from /appname/index/
to get to /appname/detail/###
I am instead getting to /appname/index/deta
Add /
at start in href
:
{{ job.name }}
And for the url
tag to work you need to do it like this:
{{ job.name }}