Re: newforms-admin branch has been merged into trunk

2008-07-18 Thread Frank Singleton
Brian Rosner wrote: > I have just recently merged the newforms-admin branch into trunk as of > r7967 [1]. A BIG Thankyou to all involved !! Cheers / Frank --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Djang

Re: DateField() , AttributeError: 'str' object has no attribute 'strftime'

2007-08-08 Thread Frank Singleton
Russell Keith-Magee wrote: >On 8/8/07, Collin Grady <[EMAIL PROTECTED]> wrote: > > >>This is not a backend issue at all - the problem is you're assigning a >>string to the DateField, which is not what it needs. >> >> Thank Russ for the help.. typo on my part ;-) yes this works !! mydate =

Re: DateField() , AttributeError: 'str' object has no attribute 'strftime'

2007-08-08 Thread Frank Singleton
Collin Grady wrote: >This is not a backend issue at all - the problem is you're assigning a >string to the DateField, which is not what it needs. > > Hi Keith and Collin, This is what happens when you try to code at 1:30am :-) Yes I have it working ok inputdata is a split line read from a fi

DateField() , AttributeError: 'str' object has no attribute 'strftime'

2007-08-03 Thread Frank Singleton
Hi, fedora 7 django 0.96 DATABASE_ENGINE = 'sqlite3' maybe its late but DateField is causing me some grief when trying to load some test data from the command line (ie: not via admin web). in model test_date = models.DateField() in another python script (run on command line ) that imports t

Re: list_display with multiple url in admin , select item to change

2007-05-03 Thread Frank Singleton
Frank Singleton wrote: > Hi, > > Is it possible to embed hyperlinks in the list_display list for model ok read this in the docs.. If the string given is a method of the model, Django will HTML-escape the output by default. If you’d rather not escape the output of the method, give t

list_display with multiple url in admin , select item to change

2007-05-03 Thread Frank Singleton
Hi, Is it possible to embed hyperlinks in the list_display list for model. An example is a model class that has say 1 foreign key reference, and list_display as follows list_display=('id','foreignkeyref') self.id appears in the first column as a hyperlink (nice, this hyperlink you get for f