Re: A little help before I run down the wrong rabbit hole

2011-03-15 Thread Nick
Thanks, Shawn. That was the first question I had. There will likely be more to follow but I didn't want to chase the wrong solution from the start. On Mar 15, 3:02 pm, Shawn Milochik wrote: > You can use formsets, which can be passed querysets upon > initialization. If this

Re: A little help before I run down the wrong rabbit hole

2011-03-15 Thread Shawn Milochik
You can use formsets, which can be passed querysets upon initialization. If this doesn't help, feel free to use a more specific question. Shawn -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

A little help before I run down the wrong rabbit hole

2011-03-15 Thread Nick
I am working on an election application. I am at the point where I would like to start putting together the data entry point for the app and would like a little advice on how to proceed. Here is a (simplified) version of my models: class Candidate(models.Model): f_name = models.CharField()