mirror of
https://github.com/KevinMidboe/Node-Com-Handler.git
synced 2025-10-29 17:50:27 +00:00
32 lines
1002 B
Markdown
32 lines
1002 B
Markdown
## This is the header for this code snippet
|
|
|
|
This is more text on new line and more and more and more. And if there are anyone else that need help with their mental help.
|
|
Please contact me imideatly.
|
|
|
|
```py
|
|
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
from django.template import loader
|
|
|
|
from .models import Question
|
|
|
|
# Create your views here.
|
|
def index(request):
|
|
latest_question_list = Question.objects.order_by('-pub_date')[:5]
|
|
template = loader.get_template('polls/index.html')
|
|
context = {
|
|
'latest_question_list': latest_question_list,
|
|
}
|
|
return HttpResponse(template.render(context, request))
|
|
|
|
def detail(request, question_id):
|
|
return HttpResponse("You're looking at question %s." % question_id)
|
|
|
|
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)
|
|
```
|