Difference between revisions of "Using a template."

From MyWiki
Jump to: navigation, search
(Created page with "STarting with the")
 
Line 1: Line 1:
STarting with the
+
Starting with the hello app on line 3 make a modification to the default route:
 +
Replace <source lang="python">
 +
def index(request):
 +
    return HttpResponse("Hello!") </source>

Revision as of 10:49, 19 March 2021

Starting with the hello app on line 3 make a modification to the default route:

Replace
def index(request):
    return HttpResponse("Hello!")