objects added via inline not logged

2011-02-20 Thread Frank W. Samuelson
I have an class payment that links to households class Payment(models.Model): # Which household made this payment? household = models.ForeignKey(Household) ... and the household has a payment inline in the admin interface. When I add a payment from the list of Payments, the first

Re: Django Generator

2010-02-09 Thread Frank W. Samuelson
You are something of a killjoy, Mike. This could grow into a really great project, where people don't even have to learn programming to generate a usable django web database app. They just design their app with the user friendly web interface, and it runs. It could even be integrated with

Slow admin performance with specific inline

2010-02-08 Thread Frank W. Samuelson
When I inline a particular model the admin interface slows down enormously. Inlining other models does not have this effect. This is with the python server (runserver). Any help would be great. When I use the following in my admin file, displaying a household object is very snappy, ~ 1 sec.