You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

views.py 258B

123456789
  1. from django.http import HttpResponse
  2. from django.shortcuts import render
  3. import time
  4. def index(request):
  5. context = {'now' : time.strftime('%H:%M:%S', time.localtime())}
  6. return render(request, 'polls/index.html', context)
  7. # Create your views here.