End tuto03
This commit is contained in:
@@ -1,6 +1,26 @@
|
||||
from django.shortcuts import render
|
||||
from django.shortcuts import get_object_or_404, render
|
||||
from django.http import Http404
|
||||
from django.http import HttpResponse
|
||||
|
||||
|
||||
from polls.models import *
|
||||
|
||||
def index(request):
|
||||
return HttpResponse("Hello, world kirosbr ! test 2")
|
||||
# Create your views here.
|
||||
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("Tu réponds à la question %s." % question_id)
|
||||
|
Reference in New Issue
Block a user