On Mon, Apr 7, 2008 at 10:10 PM, Purcell <[EMAIL PROTECTED]> wrote: > > views.py-- > from django.http import HttpResponse > import datetime > > def current_datetime(request): > now = datetime.datetime.now() > html = "<html><head></head><body>It is now %s.</body></html>" % > now > return HttpResponse(html) > > def hours_ahead(request, offset): > offset = int(offset) > dt = datetime.datetime.now() + datetime.timedelta(hours=offset) > html = "<html><body>In %s hour(s), it will be %s.</body></html>" % > (offset, dt) > return HttpResponse(html) > > [...] > > urls.py-- > from django.conf.urls.defaults import * > from mysite.views import current_datetime
You should also import the hours_ahead symbol as you did with the current_datetime one > from mysite.views import current_datetime, hours_ahead -- Ramiro Morales --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---