Untitled
unknown
plain_text
2 years ago
200 B
20
Indexable
def hello(request):
response_text = """
<html>
<body>
<p> Hello </p>
</body>
</html>
"""
return HttpResponse(response_text)
path('hello/', hello)
Editor is loading...