Re: Problem with "auto_now_add" in Admin interface

2007-11-08 Thread RajeshD
On Nov 8, 2:17 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > Here's a ticket that looks like it describes your problem: > > http://code.djangoproject.com/ticket/1030 > > It's still open but it looks like the last comment might provide a > workaround, depending on the version of Django you are

Re: Problem with "auto_now_add" in Admin interface

2007-11-08 Thread Karen Tracey
Here's a ticket that looks like it describes your problem: http://code.djangoproject.com/ticket/1030 It's still open but it looks like the last comment might provide a workaround, depending on the version of Django you are running. Karen On 11/8/07, kevinski <[EMAIL PROTECTED]> wrote: > > > I a

Problem with "auto_now_add" in Admin interface

2007-11-08 Thread kevinski
I am building a simple wiki and I am having trouble with my models: from django.db import models class Wikipage(models.Model): title = models.SlugField(primary_key=True) creator = models.CharField(maxlength=25) post_date = models.DateTimeField(auto_now_add=True) class Admin: