Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just started learning python and django and I have a question. I got the assignment to turn function views into class based views. But my links wont work now.

these are from urls.py:

url(r'^$', ContactIndex.as_view()),
url(r'^add$', ContactAdd.as_view()),
url(r'^([0-9]+)/update$', ContactUpdate.as_view()),
url(r'^([0-9]+)/view$', ContactView.as_view()),

This is my link :

{% url rtr_contact.views.ContactView contact.id %}

but this doesnt work it says:

Caught NoReverseMatch while rendering: Reverse for 'rtr_contact.views.ContactView' with arguments '(20L,)' and keyword arguments '{}' not found.

Any ideas?

cheers,

Robin

share|improve this question
1  
You should suffix your url patterns with a slash. It's a standard in Django also it makes it easier for other programs to work with it (without going into gory details ...) – jpic Dec 21 '11 at 11:21

1 Answer

up vote 5 down vote accepted

To make url reversing easy, I recommend that you always name your url patterns.

url(r'^$', ContactIndex.as_view(), name="contact_index"),
url(r'^add$', ContactAdd.as_view(), name="contact_add"),
url(r'^([0-9]+)/update$', ContactUpdate.as_view(), name="contact_update"),
url(r'^([0-9]+)/view$', ContactView.as_view(), name="contact_view"),

Then in the template:

{% url contact_view contact.id %}
share|improve this answer
1  
Thank you, It worked. I wish the documentation of django was easier. – user769498 Dec 21 '11 at 10:56
1  
I think that on the whole, Django documentation is excellent. The section on class based views is a bit bare, but hopefully it will get fleshed out in future. – Alasdair Dec 21 '11 at 11:06
It's the future, and the class-based generic-views docs are still lacking. Thanks for your answer - it helped me out too. – tatlar Jan 16 at 21:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.