On Oct 26, 1:23 pm, ehpmail <[EMAIL PROTECTED]> wrote:
> My URLconf has the following urls:
>
>    1.  ^admin/(.*)
>    2. ^$
>    3. ^popular/$
>    4. ^user/(\w+)/$
>    5. ^tag/([^s]+)/$
>    6. ^tag/$
>    7. ^search/$
>    8. bookmark/(\d+)/$
>    9. ^login/$
>   10. ^logout/$
>   11. ^register/$
>   12. ^register/success/$
>   13. ^site_media/(?P<path>.*)$
>   14. ^save/$
>   15. ^vote/$
>   16. ^comments/
>
> Why willhttp://localhost:8000/accounts/login/bit resolve - it gives
> a (Page not found) 404 error?

Because /accounts/login isn't in the list of URLs you posted above,
you just have /login/.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to