gazhdict/gazhdict/addentry/views.py
2021-01-05 23:31:36 +08:00

9 lines
249 B
Python

from django.shortcuts import render
from django.http import HttpResponse
from datetime import datetime
# Create your views here.
def hello_world(request):
return render(request, 'hello_world.html',
{'current_time' : str(datetime.now()),})