The problem is that you dont have any url that has the poll id as parameter. So django cant find it
2015-10-04 22:02 GMT+01:00 James Schneider <[email protected]>: > > This is my mysite/url,py > > > > from django.contrib import admin > > > > urlpatterns = [ > > url(r'^admin/', include(admin.site.urls)), > > url(r'^polls/', include('polls.urls',namespace = "polls")), > > ]. > > > > Oh, yep, there's the problem. You added a namespace called 'polls' but you > aren't referencing it in your template, so the URL resolver isn't using > your polls/urls.py file for that {% url %} call. You probably forgot to > update the {% url %} tag after the tutorial portion that added the > namespace to the mysite/urls.py file. > > You need to update your {% url %} tag to use 'polls:detail' rather than > just 'detail'. > > See the last code box on that tutorial page: > https://docs.djangoproject.com/en/1.8/intro/tutorial03/#namespacing-url-names > > -James > > -- > 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 [email protected]. > To post to this group, send email to [email protected]. > 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/CA%2Be%2BciUsnTc4ExDWWGycB5jt%3DBfNpnWxaYNi7tbVWggr%3DDC4qQ%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CA%2Be%2BciUsnTc4ExDWWGycB5jt%3DBfNpnWxaYNi7tbVWggr%3DDC4qQ%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- *monoBOT* Visite mi sitio(Visit my site): monobotsoft.es/blog/ -- 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 [email protected]. To post to this group, send email to [email protected]. 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/CA%2BxOsGA-QL8ab6YTnYnp-qx9Ux9qvZSU6Af77N6fcV1GZWdd2w%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

