It seems to me the that automatic mechanism mentioned in the docs
does not exist in django-registration but in its component
django-profiles, reading the source code I see this...

def create_profile(request, form_class=None, success_url=None,
                   template_name='profiles/create_profile.html',
                   extra_context=None):
    """
    Create a profile for the current user, if one doesn't already
    exist.

Now my problem is how to import the profile urls.py urls...

Looking at mysite.myproject.urls I have...

urlpatterns += patterns('',
    (r'^accounts/', include('registration.urls')),
    (r'^profiles/', include('profiles.urls')),
)

But seem to be missing some of the links that should be supplied by
them.

I seem to be missing all of the django-profiles.urls

The only links available are...

Using the URLconf defined in mysite.urls, Django tried these URL
patterns, in this order:
# ^accounts/ ^activate/(?P<activation_key>\w+)/$
# ^accounts/ ^login/$
# ^accounts/ ^logout/$
# ^accounts/ ^password/change/$
# ^accounts/ ^password/change/done/$
# ^accounts/ ^password/reset/$
# ^accounts/ ^password/reset/confirm/(?P<uidb36>[0-9A-Za-z]+)-(?
P<token>.+)/$
# ^accounts/ ^password/reset/complete/$
# ^accounts/ ^password/reset/done/$
# ^accounts/ ^register/$
# ^accounts/ ^register/complete/$
# ^profiles/

The needed profiles urls do not appear even though called in urls.py,

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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
-~----------~----~----~----~------~----~------~--~---

Reply via email to