We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looks like @TomLippincott ran into an issue using Turkle as an app due to us not namespacing our URLs:
stats_url = reverse('stats_for_user', kwargs={'user_id': obj.id})
I believe this prevents any other app running from using the key 'stats_for_user'. What I don't understand is why Tom switched from
return redirect(index)
to
return redirect(reverse("turkle:index"))
as in the first case index it is a function and shouldn't case any conflicts.
Two relevant commits: 5a529f0, 5045edb
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Looks like @TomLippincott ran into an issue using Turkle as an app due to us not namespacing our URLs:
I believe this prevents any other app running from using the key 'stats_for_user'. What I don't understand is why Tom switched from
to
as in the first case index it is a function and shouldn't case any conflicts.
Two relevant commits: 5a529f0, 5045edb
The text was updated successfully, but these errors were encountered: