Hi,

I have overridden my absolute urls like thus:-

ABSOLUTE_URL_OVERRIDES = {
    'auth.user': lambda o: "/%s/" % o.username,
}

so that users can access their profiles via http://mydomain.com/username

However, if someone creates a user called, say, 'admin' or 'blog', it
will conflict with other urls. What is the best way to prevent certain
usernames being registered in order to avoid any conflict with other
urls? Is there some sort of built in 'blacklist'?

Regards,
Andrew

--~--~---------~--~----~------------~-------~--~----~
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