Re: Newforms admin relative image fields

2008-02-15 Thread [EMAIL PROTECTED]
Got a patch here http://dpaste.com/hold/35344/ - for trunk Based off http://code.djangoproject.com/ticket/6241 and backported with media on forms Joseph, would like to hear what you think of it. Can make the same changes in #6241 for nfa too. On 15 Feb, 21:41, Michael Newman <[EMAIL PROTECTE

Re: Newforms admin relative image fields

2008-02-15 Thread Michael Newman
Thank you very much. It works now. On Feb 15, 12:49 pm, "Joseph Kocherhans" <[EMAIL PROTECTED]> wrote: > On Fri, Feb 15, 2008 at 11:46 AM, Michael Newman <[EMAIL PROTECTED]> wrote: > > > Let me know if there are any patches, I will gladly test. I don't even > > have a clue where that error woul

Re: Newforms admin relative image fields

2008-02-15 Thread Michael Newman
Let me know if there are any patches, I will gladly test. I don't even have a clue where that error would be coming in from. I wish I did. Thanks for the confirmation, Michael Newman On Feb 15, 12:11 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Confirmed, it is being worked on > > On 15 F

Re: Newforms admin relative image fields

2008-02-15 Thread Joseph Kocherhans
On Fri, Feb 15, 2008 at 11:46 AM, Michael Newman <[EMAIL PROTECTED]> wrote: > > Let me know if there are any patches, I will gladly test. I don't even > have a clue where that error would be coming in from. I wish I did. > Thanks for the confirmation, Michael Newman You might want to try an sv

Re: Newforms admin relative image fields

2008-02-15 Thread [EMAIL PROTECTED]
Confirmed, it is being worked on On 15 Feb, 15:27, Michael Newman <[EMAIL PROTECTED]> wrote: > Could someone confirm that Inline images don't work in Newforms admin? > Thanks. Here is the simplest sample code I came up with: > > from django.db import models > > class TestObject(models.Model): >

Newforms admin relative image fields

2008-02-15 Thread Michael Newman
Could someone confirm that Inline images don't work in Newforms admin? Thanks. Here is the simplest sample code I came up with: from django.db import models class TestObject(models.Model): somefield = models.CharField(max_length=100) class TestObjectImageInline(models.Model): test_objec