Changes between Initial Version and Version 1 of Ticket #10938, comment 10


Ignore:
Timestamp:
Sep 7, 2011, 10:59:33 PM (13 years ago)
Author:
stormlifter

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10938, comment 10

    initial v1  
    11Part of the issue I see is that if you are overriding another app's forms then it would be nice to be able to use an inline and add that into the fieldset so that you don't have to redo everything. For example...
     2
     3{{{
    24----
    35class UserProfileInline(admin.TabularInline):
     
    810
    911----
     12}}}
     13
    1014The issue I am getting is that since the fieldsets are unable to include any inline fields that the fields from the inline model are always forced to the bottom, of course I could use JS to move them to the top, but that's just boring. I could also override the form and make it save that added field to the appropriate model, but that's just sloppy.
Back to Top