Re: South tutorial is not working

2012-04-13 Thread Jacco Flenter
Hi Alex, It looks like south was not added to the INSTALLED_APPS list in your settings.py Regards jacco On Apr 13, 2012 11:05 PM, "alex3627" wrote: > Hi all, > > as adviced to use "South" to do something 'better', I have installed it > and tri

Re: Users getting logged out frequently

2012-01-06 Thread Jacco Flenter
What kind of software stack are you running? Apache and... or nginx and...? On Fri, Jan 6, 2012 at 10:51 AM, Arun P wrote: > @Kevin: > > The backend used is the default Database backend. > There are no other projects which share the same domain space. > > I guess will have to write a middleware

Re: load-on-startup equivalent in django?

2011-10-20 Thread Jacco Flenter
Another option is to create a command and run it via a cronjob On Thu, Oct 20, 2011 at 2:55 PM, kenneth gonsalves wrote: > > On Thu, 2011-10-20 at 13:38 +0800, Ken wrote: > > I wonder how do I do the same in django framework. Or there is some > > other way to run some background code periodicly?

Re: New user login problem

2011-09-16 Thread Jacco Flenter
password field contains something in the lines of "sha1$x$xxx..." Regards, Jacco P.s. if you are on the "change user" page you can use the "change password form" below the password field to modify the current password On Fri, Sep 16, 2011 at 2:20 PM, ma

Re: how to customize a form field, CSS style things.

2011-09-16 Thread Jacco Flenter
Hi Kevin, For this you might want to use something like django-uni-form: http://readthedocs.org/docs/django-uni-form/en/latest/ Regards, Jacco On Fri, Sep 16, 2011 at 1:58 PM, Kevin.X wrote: > Dave, > Thanks for your reply. But I want a more general way to specify the > class of a w

Strange behavior in model.save()

2011-08-19 Thread Jacco
I am having great difficulties in saving nested models in an easy way. Consider the following Example : -- class Place(models.Model): where = models.Ch