↧
Answer by panchicore for Caught NoReverseMatch while rendering: Reverse for...
from django.conf.urls.defaults import *urlpatterns = patterns('apps.accounts.views',url(r'^(?P<username>\w+)/$', 'profile_view', {},...
View ArticleAnswer by Daniel Roseman for Caught NoReverseMatch while rendering: Reverse...
The error is showing you what's wrong: the username argument is evaluating to an empty string. You'll need to work out why this is.
View ArticleCaught NoReverseMatch while rendering: Reverse for 'accounts_profile_view'...
As you can see by the tittle I have a weird Caught NoReverseMatch while rendering: Reverse for 'accounts_profile_view' with arguments '('',)' and keyword arguments '{}' not found.The weirdest thing is...
View Article
More Pages to Explore .....