1👍
✅
The problem is that your url begins with /report
in the href attribute. Beginning with a /
means that it should be relative to the root of your domain. I believe what you need to change is how the Django sites framework is configured, and it looks like this question has the answer.
Also, you should probably use the url tag in your templates instead of hardcoding the urls in your anchor tags.
Source:stackexchange.com