I have the following main site urls.py:
urlpatterns = patterns('',
(r'^search/', include('haystack.urls')),
)
I need to call this from a link, but this type of entry has no name I can with something like:
<a href="{% url 'search???' %}">Go To Search</a>
How can I call this url entry?