Re: Custom form/formset for edit inline

2008-12-18 Thread Peter Shafer
It seems to be working now once I made the following changes to admin.py http://dpaste.com/100570/ On Dec 18, 1:56 pm, Peter Shafer wrote: > I'm also having the same problem as Emil.  I have pictures that belong > to galleries so I use inline forms to manage them.  I also use the > drag-drop scr

Re: Custom form/formset for edit inline

2008-12-18 Thread Peter Shafer
I'm also having the same problem as Emil. I have pictures that belong to galleries so I use inline forms to manage them. I also use the drag-drop script to order these images. Since images have so many attributes though, the size of the inline form becomes pretty unmanageable. Here is my admin

Re: Custom form/formset for edit inline

2008-11-17 Thread Ben Gerdemann
I'm having exactly the same problem which I posted about here http://groups.google.com/group/django-users/browse_thread/thread/bb4c792f13b2eceb# Have you figured out how to do this? Yours is the third message I've read by someone trying to customize an inline form without any solution. I'm beginni

Re: Custom form/formset for edit inline

2008-10-13 Thread Emil
Hi, thanks for replying, but I tried that at first, expecting to be able to do that on the inline, but I couldn't get it working. It was a little while back, so I'm not sure I remember correctly, but I think I got some sort of AlreadyRegistered error (might be wrong about that though). Also, loo

Re: Custom form/formset for edit inline

2008-10-13 Thread gearheart
hi, fieldsets is not a form's attribute you should put them in ImageInline V. On Oct 12, 10:27 pm, Emil <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to figure out how to use a custom form for when editing > objects inline in the admin. The case is something like this: > I have Images that hav

Custom form/formset for edit inline

2008-10-12 Thread Emil
Hi, I'm trying to figure out how to use a custom form for when editing objects inline in the admin. The case is something like this: I have Images that have foreign keys to image galleries. When editing a gallery, the images associated with it are edited inline. The image model has quite a few op