Re: DateTimeField calendar not showing

2008-04-20 Thread chiefmoamba

Yes - sorry. In the admin. Thanks. Ed

On Apr 20, 1:59 pm, Juanjo Conti <[EMAIL PROTECTED]> wrote:
> chiefmoamba escribió:
>
> > Hi All,
>
> > For some reason my DateTimeField is not showing a calendar next to the
> > 'DateTime' box in my view. My code from models.py is below. Can anyone
> > offer me any suggestions? I am using 0.96.
>
> You mean in the admin or in any other place?
>
> Juanjo
> --
> mi blog:http://www.juanjoconti.com.ar
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: DateTimeField calendar not showing

2008-04-20 Thread Juanjo Conti

chiefmoamba escribió:
> Hi All,
> 
> For some reason my DateTimeField is not showing a calendar next to the
> 'DateTime' box in my view. My code from models.py is below. Can anyone
> offer me any suggestions? I am using 0.96.

You mean in the admin or in any other place?

Juanjo
-- 
mi blog: http://www.juanjoconti.com.ar

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



DateTimeField calendar not showing

2008-04-20 Thread chiefmoamba

Hi All,

For some reason my DateTimeField is not showing a calendar next to the
'DateTime' box in my view. My code from models.py is below. Can anyone
offer me any suggestions? I am using 0.96.

Thanks,

Ed


from django.db import models

class Course(models.Model):
course = models.CharField(maxlength=100, core=True)
start_date = models.DateTimeField()
end_date = models.DateTimeField()

def __str__(self):
return self.course

class Admin:
list_display = ('course', 'start_date', 'end_date', )
list_filter = ('course',)
ordering = ('-course',)
search_fields = ('course',)
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---