I'm using django-registration and django-profiles and after having confirm the registration, I meet a 404 when I try to access to the page http://example.com/profiles/fox/
-
I saw with the debug_toolbar all the queries that have been made and saw one on the table I defined in the settings AUTH_PROFILE_MODULE = 'tglr.UserProfile'
- the query on this model returns ... nothing.
It looks like that the registration confirmation did not do its job.
What do i miss ?
thank you for your help
regards
edit: if I add the missing record in the UserProfile table all goes well - this really seems to confirm the behavior I met.