On Tue, Dec 12, 2006 at 11:13:52AM -0800, conrad22 wrote:
> 
> Woops..see, I am already mad, as I have not communicated the actual
> problem..!!!!
> 
> The last bit - 'categories/1/k/' returns a page/url  not found error,
> as follows:
> 
> Request Method:       GET
> Request URL:  http://127.0.0.1:8000/categories/1/k/
> 
> Using the URLconf defined in kvn.urls, Django tried these URL patterns,
> in this order:
> 
>    1. ^$
>    2. ^kvn/$
>    3. ^kvn/(?P<object_id>\d+)/$
>    4. ^r/
>    5. kvn/add/$
>    6. ^admin/
>    7. ^feeds/(?P<url>.*)/$
>    8. ^categories/$
>    9. ^categories/(?P<object_id>\d+)/$
> 
> The current URL, /categories/1/k/, didn't match any of these.
Errr, well it won't, the closest is 9... but you'd need something more
like:
        ^categories/(?P<object_id>\d+)/(?P<whatever_the_letter_is_for>\w+)/$

Cheers,

-- 
Brett Parker

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