Difference between revisions of "Using a template."
From MyWiki
(Created page with "STarting with the") |
|||
Line 1: | Line 1: | ||
− | + | 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:
Replacedef index(request): return HttpResponse("Hello!")