Re: absolute url overrides

2008-05-04 Thread Thierry
I read that doc many times :) Missed that little detail every time though. Thanks for the help! --~--~-~--~~~---~--~~ 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@g

Re: absolute url overrides

2008-05-03 Thread Karen Tracey
c ( http://www.djangoproject.com/documentation/settings/#absolute-url-overrides) says this is a mapping of ''"app_label.model_name" strings'. App_label, I believe, is only the rightmost part of the Python path to the application (in this case django.contrib.auth, so for rig

absolute url overrides

2008-05-03 Thread Thierry
ABSOLUTE_URL_OVERRIDES = { 'django.contrib.auth.models.user': lambda o: "/members/%s/" % o.username, } Doesn't seem to be working, any idea why? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" grou