﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
35165	Django Tutorial - Writing Your First App	maddiew1se	nobody	"Hello,

I just recently completed the Django Tutorial - Writing Your First App. When I try to do http://127.0.0.1:8000/admin/polls/1/ I get a 404 Page Not Found Error. I followed all of the steps in the tutorial but it appears that my detail view is not working. Whenever I try and click on a question, it immediately sends me to the /change/ url. What should I do about this? I will attach my polls.urls.py file.
{{{#!python
from django.urls import path
from . import views


app_name = 'polls'
urlpatterns = [
    path('', views.IndexView.as_view(), name='index'),
    path('<int:pk>/', views.DetailView.as_view(), name='detail'),
    path('<int:pk>/results/', views.ResultsView.as_view(), name='results'),
    path('<int:question_id>/vote/', views.vote, name='vote'),
]
}}}
and here is my views.py for the detail view: 
{{{#!python
class DetailView(generic.DetailView):
    model = Question
    template_name = 'polls/detail.html'

    def get_queryset(self):
        """"""
        Excludes any questions that aren't published yet.
        """"""
        return Question.objects.filter(pub_date__lte=timezone.now())
}}}"	Uncategorized	closed	Uncategorized	5.0	Normal	invalid			Unreviewed	0	0	0	0	0	0
