I'm using django and haystack with whoosh and I have several questions about them:
1) When I attempt to search smth I should select all models which has indexed in whoosh. How can I set system to find values everywhere (on all models)?
2) I have search input box but it doesn't work with haystack urls. So my template (I'm using bootstrap):
<form method="get" action="/search/" class="navbar-search pull-left">
<input type="text" class="search-query" placeholder="Search">
</form>
And I have search url like in tutorial:
(r'^search/', include('haystack.urls')),
How say this form to start search immidiately and sends data to haystack?