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

link|improve this question

80% accept rate
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
feedback

1 Answer

up vote 4 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 %}
link|improve this answer
Thank you, It worked. I wish the documentation of django was easier. – user769498 Dec 21 '11 at 10:56
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
feedback

Your Answer

 
or
required, but never shown

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