[Fixed]-Navigation links not working in navbar (Bootstrap)(Django)

1👍

Just use app name before named urls

<li class="active"><a href="{% url 'profiles:home' %}">Home</a></li>
<li><a href="{% url 'profiles:about' %}">About</a></li>

This will work fine.

Leave a comment