I have the following url conf:
url(r'^tournaments/(?P<tournament_id>\d+)/imports/$',
'club.apps.main.views.imports_view',
name='imports_tournament'),
And the following template tag:
{% url 'imports_tournament' tournament.id%}
However, this always raises no reverse url match found error.
Django version is 1.5, so the single quoted syntax should work..
What am I doing wrong?
tournament.idto1, raises again?