Re: user profile is not getting saved in admin

2008-06-23 Thread Alessandro Ronchi
2008/6/23, Karen Tracey <[EMAIL PROTECTED]>: > newforms-admin WILL be merged before Django 1.0, a recent discussion on the > developer's list showed broad consensus that 1.0 without newforms-admin > doesn't make any sense. > > I encourage anyone having this problem to try the newforms-admin branch

Re: user profile is not getting saved in admin

2008-06-23 Thread Karen Tracey
On Mon, Jun 23, 2008 at 6:40 AM, Deniz Dogan <[EMAIL PROTECTED]> wrote: > From what I've heard it will be easier to do what we all seem to want > in the newforms-admin branch, which should be merged by the time of > the release of Django 1.0. > newforms-admin WILL be merged before Django 1.0, a r

Re: user profile is not getting saved in admin

2008-06-23 Thread Deniz Dogan
>From what I've heard it will be easier to do what we all seem to want in the newforms-admin branch, which should be merged by the time of the release of Django 1.0. On Jun 21, 2:49 am, ristretto <[EMAIL PROTECTED]> wrote: > You'd think, indeed. I'm wondering if there's a work around or best > p

Re: user profile is not getting saved in admin

2008-06-21 Thread Alessandro Ronchi
2008/6/21 ristretto <[EMAIL PROTECTED]>: >> > I have looked through the docs and search the group and web. Seems other's >> > are asking the question, but I haven't seen an answer yet. I have the same problem, but with every edit_inline foreign key. -- Alessandro Ronchi Skype: aronchi http://w

Re: user profile is not getting saved in admin

2008-06-20 Thread ristretto
You'd think, indeed. I'm wondering if there's a work around or best practice way to handle it. I noticed in the docs stating to wrap access to the user.get_profile() call around a try: except: and create it if you get an error. But, I don't see how to do that simply in the Admin system. On J

Re: user profile is not getting saved in admin

2008-06-20 Thread Deniz Dogan
On 20 Juni, 05:26, "Gene Campbell" <[EMAIL PROTECTED]> wrote: > I have looked through the docs and search the group and web. Seems other's > are asking the question, but I haven't seen an answer yet. > > class UserProfile(models.Model): > country = models.ForeignKey(Country, core=True) >

user profile is not getting saved in admin

2008-06-19 Thread Gene Campbell
I have looked through the docs and search the group and web. Seems other's are asking the question, but I haven't seen an answer yet. class UserProfile(models.Model): country = models.ForeignKey(Country, core=True) user = models.ForeignKey(User, unique=True, edit_inline=models.TABULAR, co