Re: can't get a model in the admin

2009-01-13 Thread Bobby Roberts
can anyone help me on this issue? --~--~-~--~~~---~--~~ 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

Re: can't get a model in the admin

2009-01-11 Thread Bobby Roberts
> What version of Django are you using? The use of max_length instead of > maxlength implies something later than 0.96 but the use of 'class Admin' > implies something before 1.0. If you are using 1.0 or later 'class Admin' > is not how admin defs are specified any more, see the admin doc for th

Re: can't get a model in the admin

2009-01-11 Thread Karen Tracey
On Sun, Jan 11, 2009 at 7:19 PM, Bobby Roberts wrote: > > here's my model: > > from django.db import models > > class Testimonial(models.Model): >active=models.IntegerField(max_length=11, blank=False) >testimony=models.CharField(max_length=500) >name=models.CharField(max_l

can't get a model in the admin

2009-01-11 Thread Bobby Roberts
here's my model: from django.db import models class Testimonial(models.Model): active=models.IntegerField(max_length=11, blank=False) testimony=models.CharField(max_length=500) name=models.CharField(max_length=75) postdate = models.DateTimeField (auto_now_add=True