RL reversa do Django com parâmetros para uma visão baseada em clas

Acabei de começar a aprender python e django e tenho uma pergunta. Eu recebi a tarefa de transformar visões de função em visões baseadas em classe. Mas meus links não funcionam agor

estes são de urls.py

url(r'^

Este é o meu link:

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

mas isso não funciona, diz:

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

Este é o meu link:

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

mas isso não funciona, diz:

Caught NoReverseMatch while rendering: Reverse for 'rtr_contact.views.ContactView' with arguments '(20L,)' and keyword arguments '{}' not found.
, ContactAdd.as_view()), url(r'^([0-9]+)/update

Este é o meu link:

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

mas isso não funciona, diz:

Caught NoReverseMatch while rendering: Reverse for 'rtr_contact.views.ContactView' with arguments '(20L,)' and keyword arguments '{}' not found.
, ContactUpdate.as_view()), url(r'^([0-9]+)/view

Este é o meu link:

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

mas isso não funciona, diz:

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

Este é o meu link:

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

mas isso não funciona, diz:

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

questionAnswers(1)

yourAnswerToTheQuestion