Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this in my template file:

<a href="{% url polls.views.vote poll.id %}">Vote again?</a>

This was my URLConf:

urlpatterns = patterns('polls.views', 
    url(r'^$', 'index'),
    url(r'^(?P<poll_id>\d+)/$', 'detail'),
    url(r'^(?P<poll_id>\d+)/results/$', 'results'),
    url(r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)

I changed some views to use generics:

urlpatterns = patterns('polls.views',
    url(r'^$',
        ListView.as_view(
            queryset=Poll.objects.order_by('-pub_date')[:5],
            context_object_name='latest_poll_list',
            template_name='polls/index.html')),
    url(r'^(?P<pk>\d+)/$',
        DetailView.as_view(
            model=Poll,
            template_name='polls/details.html')),
    url(r'^(?P<pk>\d+)/results/$',
        DetailView.as_view(
            model=Poll,
            template_name='polls/results.html'),
        name='results'),
    url(r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)

And now this error is shown:

Reverse for 'polls.views.results' with arguments '(1,)' and keyword arguments '{}' not found.

How can I fix this?

share|improve this question

1 Answer

up vote 1 down vote accepted

Add name to your url pattern:

url(r'^(?P<pk>\d+)/results/$',
    DetailView.as_view(
        model=Poll,
        template_name='polls/results.html'),
    name='results'),

then in templates use name instead of view name:

{% url results poll.id %}
share|improve this answer
The strange thing is that polls.views.results doesn't work, but results does. – metroxylon Feb 16 at 1:00
1  
There is no views named polls.views.results, but you defined your url patterns with name results, more details docs.djangoproject.com/en/1.4/topics/http/urls/… – iMom0 Feb 16 at 1:10

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.