I am receiving this error in one of my templates and cant seem to figure out what's wrong.
`NoReverseMatch: Reverse for 'getimagefile'
with arguments '(12L, 'afN9LRzESh4I9CGe6tFVoA==\n')' and
keyword arguments '{}' not found.
My urls.py contains:
urlpatterns = patterns('myproj.myapp.views',
url(r'^getimage/(?P<extractedcontent_id>\d+)/(?P<encpw>.*)/$','getimagecontent',name='getimagefile'),
)
My views.py contains:
def getimagecontent(request,extractedcontent_id,encpw):
........
And finally my template that's giving me the error contains the following line:
<li class="active"><img src="{% url getimagefile img,encpw %}" title=""/></li>