Using a template.
From MyWiki
Starting with the hello app on line 3 make a modification to the default route in the views.py file:
Replacedef index(request): return HttpResponse("Hello!")
with
def index(request): return render(request, "hello/index.html")