[Answer]-Url – issues when rendering search results with Haystack / Whoosh jquery

1👍

the url in your form is wrong :

Change this :
<form method="get" action="../">
by this :

 <form method="get" action="{% url 'haystack_search' %}">

Leave a comment