|
|
|
|
|
by waihtis
2149 days ago
|
|
re-read the documentation but I'm not following. This example: async def current_datetime(request):
now = datetime.datetime.now()
html = '<html><body>It is now %s.</body></html>' % now
return HttpResponse(html)
seems like an example that I was thinking of. |
|