I always get this error when try to use url tag:
Reverse for 'show' with arguments '()' and keyword arguments
'{}' not found. 1 pattern(s) tried: ['app/$show/']
my url tag:
<a href="{% url 'show' %}"> item </a>
url.py
url(r'^app/$', include('app.urls')),
app.url.py
url(r'^$', 'app.views.index', name='app_index'),
url(r'^show/', 'app.views.show', name='show'),
What can be wrong? Been following the Django doucmentation and searched around the internet with no results.