[Fixed]-How to jump from 'form action' to view in pycharm

1👍

Your url contains a / (query/) whereas your action doesn’t. So you could remove this slash but this isn’t really the correct fix, you should be using the url template tag.

<form class="form-horizontal" action="{% url 'index' %}" method="post">
👤Sayse

Leave a comment