Hello andrew,

Thank you for the reply, found where my problem was on my url.py i had done 
this 

 url(r'^resource/(?P<resource>)', ResourceDetailView.as_view(), 
> name='resource_detail'),
>

instead of this

>  url(r'^resource/(?P<resource>\d+)', ResourceDetailView.as_view(), 
> name='resource_detail'), 
>

i was leaving out the *\d+ *in the url pattern.

Regards,
Eddilbert Macharia.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/04837dfe-c97f-4f26-9bbe-b39803a7fb3c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to