404 에러
[django] Raising a 404 error
[django] Raising a 404 error
2015. 7. 18.설문에 대한 상세 내용을 보여주는 페이지를 다시 한 번 봅시다. polls/views.pyfrom django.shortcuts import renderfrom django.http import HttpResponse, Http404from django.template import RequestContext, loaderfrom .models import Question def index(request): latest_question_list = Question.objects.order_by('-pub_date')[:5] context = {'latest_question_list': latest_question_list} return render(request, 'polls/index.html', con..