Re: datetime in template not displaying

2006-11-13 Thread [EMAIL PROTECTED]
actually, I came across this link that did the trick... http://groups.google.com/group/django-users/browse_thread/thread/b958a059b6dca44e/67cc4c2f05719a65?lnk=gst&q=datetimeshortcuts&rnum=6#67cc4c2f05719a65 thanks! --~--~-~--~~~---~--~~ You received this mess

Re: datetime in template not displaying

2006-11-13 Thread [EMAIL PROTECTED]
Thank you for the reponse. I tried that before, but I continue to get an error message... DateTimeShortcuts.calendars[num].drawCurrent is not a function I have this at the top of my code. and this in the middle of the web page. Today's Date: {{ form.todayDate_date}} {{ f

Re: datetime in template not displaying

2006-11-13 Thread Guillermo Fernandez Castellanos
Check this: http://www.djangoproject.com/documentation/forms/#c1576 I had the same error a few weeks ago :-) Hope it helps, G On 11/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi! > > I have "models.DateTimeField defined in my model as "date_today". > > date_today

datetime in template not displaying

2006-11-13 Thread [EMAIL PROTECTED]
Hi! I have "models.DateTimeField defined in my model as "date_today". date_today = models.DateTimeField('todays date') On my form submission template page, i have... Today's Date: {{ form.date_today }} Whenever I try to load this page, it never displays a field,