[Answered ]-Django Link only opens in new Tab, no JavaScript in use

1👍

It’s because you are using a button instead of a link.
Try changing to:

<a href="{% url 'example' param1 param2 %}" target="_self"> Edit </a>

Leave a comment