I'm trying to install the django-invitation app on bitbucket, but I'm running into an error I've been seeing repeatedly with urls. I've googled this and various permutations have occurred to various people, but not this one in particular. The general problem occurs when I try to include a url configuration:
... urlpatterns += patterns('', (r'^accounts/', include('invitation.urls')), ) ... This is the included urls file, located in /myproject/invitation: http://dpaste.com/156349/ And the error I receive is a NoReverseMatch in my template: http://dpaste.com/156350/ If I open the shell and import django.core.urlresolvers.reverse, the error still occurs. Since "invitation_invite" (one of the other included urls) works, however, I don't believe it's due to stale pyc files. Any ideas? I'm running django v1.0. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.