Part 3 Tutorial Done

This commit is contained in:
Lukas 2021-08-27 17:27:16 +02:00
parent 93186e2501
commit 4faefebe47
4 changed files with 39 additions and 3 deletions

View File

@ -0,0 +1,6 @@
<h1>{{ question.question_text }}</h1>
<ul>
{% for choice in question.choice_set.all %}
<li>{{ choice.choice_text }}</li>
{% endfor %}
</ul>

View File

@ -0,0 +1,9 @@
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="{% url 'polls:detail' question.id %}">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}

View File

@ -1,6 +1,10 @@
from django.urls import path
from . import views
app_name = 'polls'
urlpatterns = [
path("", views.index, name="index")
path('', views.index, name='index'),
path('<int:question_id>/', views.detail, name='detail'),
path('<int:question_id>/results/', views.results, name='results'),
path('<int:question_id>/vote/', views.vote, name='vote'),
]

View File

@ -1,8 +1,25 @@
from django.shortcuts import render
from django.shortcuts import render, get_object_or_404
from django.http import HttpResponse
from .models import Question
# Create your views here.
def index(request):
return HttpResponse("Hello World. This is 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 = f"You're looking @ the results of question {question_id}"
return HttpResponse(response)
def vote(request, question_id):
return HttpResponse(f"You're voting on question {question_id}")