Re: requiring fields in the admin page

2008-07-01 Thread David Keegan
Awesome! thanks On Jul 1, 2008, at 2:15 AM, Julien wrote: > > By default all items are required. To make a field optional you have > to use blank=True. > Some interesting reading here: > http://www.b-list.org/weblog/2006/jun/28/django-tips-difference-between-blank-and-null/ > > On Jul 1, 7:10

Re: requiring fields in the admin page

2008-07-01 Thread Julien
By default all items are required. To make a field optional you have to use blank=True. Some interesting reading here: http://www.b-list.org/weblog/2006/jun/28/django-tips-difference-between-blank-and-null/ On Jul 1, 7:10 pm, keegan3d <[EMAIL PROTECTED]> wrote: > Hey guys, > > I am trying to

requiring fields in the admin page

2008-07-01 Thread keegan3d
Hey guys, I am trying to make a couple of fields required in the admin page for my app. I originally thought that core=True would do it but it makes all the fields required, even ones that I did not specify core=True for. After some further reading it seems like this is only used for fields that