new views
This commit is contained in:
@@ -1,5 +1,21 @@
|
|||||||
from django.shortcuts import render
|
from django.shortcuts import render, get_object_or_404
|
||||||
from django.http import HttpResponse
|
from django.http import HttpResponse
|
||||||
|
from django.template import loader
|
||||||
|
|
||||||
|
from .models import Question
|
||||||
|
|
||||||
def index(request):
|
def index(request):
|
||||||
return HttpResponse("Hello, world. You're at the polls index.")
|
latest_question_list = Question.objects.order_by("-pub_date")[:5]
|
||||||
|
context = {"latest_question_list":latest_question_list}
|
||||||
|
return render(request, "polls/index.html", context)
|
||||||
|
|
||||||
|
def detail(request, question_id):
|
||||||
|
question = get_object_or_404(Question, pk=question_id)
|
||||||
|
return render(request, "polls/detail.html", {"question": question})
|
||||||
|
|
||||||
|
def results(request, question_id):
|
||||||
|
response = "You're looking at the results of question %s."
|
||||||
|
return HttpResponse(response % question_id)
|
||||||
|
|
||||||
|
def vote(request, question_id):
|
||||||
|
return HttpResponse("You're voting on question %s." % question_id)
|
||||||
|
|||||||
Reference in New Issue
Block a user