from django.http import HttpResponse #last line below allows MyView.get
# to return an HttpResponse object
from django.views import View #View is to become the parent class of MyView
class MyView(View):
''' View is the parent class that provides method as_view() to MyView '''
def get(self, request, *args, **kwargs):
return HttpResponse('Hello, World!')
from django.http import HttpResponse
import datetime
def current_datetime(request):
now = datetime.datetime.now()
html = "<html><body>It is now %s.</body></html>" % now
return HttpResponse(html)
from .models import Question
def index(request):
x = Question.objects.all()
y = x[0]. question_text
return HttpResponse(x)