Untitled
plain_text
a month ago
200 B
9
Indexable
Never
def hello(request): response_text = """ <html> <body> <p> Hello </p> </body> </html> """ return HttpResponse(response_text) path('hello/', hello)
def hello(request): response_text = """ <html> <body> <p> Hello </p> </body> </html> """ return HttpResponse(response_text) path('hello/', hello)