Cascading Select Boxes in Admin?

2009-04-04 Thread JGAllen23
Is there any way to have cascading select boxes in the admin app? The second select box depends on what was chosen in the first. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Call function on server start

2009-03-24 Thread JGAllen23
Is there any way to call a function on server start? I have some maintenance stuff that I'd like to run on server start (both manage.py runserver and apache reload). Is there any way to do that? --~--~-~--~~~---~--~~ You received this message because you are

Re: Model that only needs 1 data row

2008-12-17 Thread JGAllen23
<clifford_il...@dinamis.com> wrote: > JGAllen23 wrote: > > I am building a website for a client and one of the pages they need is > > an "about us" page which would just require 1 row of data.  What is > > the best way to handle this case where a model would o

Model that only needs 1 data row

2008-12-01 Thread JGAllen23
I am building a website for a client and one of the pages they need is an "about us" page which would just require 1 row of data. What is the best way to handle this case where a model would only need 1 data row? --~--~-~--~~~---~--~~ You received this message

Json with Recursion

2007-06-21 Thread JGAllen23
I'm making a task application that allows for subtasks. I have my model set up so that it has ParentTask is a ForiegnKey('self), so using Task.task_set.all() I can get all of the subtasks, but when I serialize using json it doesn't show any of the subtasks. Is there any way for me to get the