Re: raw_id_admin and newforms

2007-03-29 Thread Adrian Holovaty
On 3/29/07, Paul Childs <[EMAIL PROTECTED]> wrote: > I understand that raw_admin_id is being removed and it will only be > available as part of the Admin inner class in a model. Does this make > it unaccessible to custom forms? Hi Paul, The raw_id_admin parameter is an admin option -- i.e., it i

Re: raw_id_admin

2005-11-23 Thread Adrian Holovaty
On 11/23/05, Grigory Fateyev <[EMAIL PROTECTED]> wrote: > class Article(meta.Model): > author = meta.ForeignKey(User, raw_id_admin=True) > > vews/articles.py generate form: > > Author: {{ form.author }} > {% if form.author.errors %}*** {{ form.author.errors|join:", " }} > {% endif