Re: [mezzanine-users] duplicated fieldset for user profile in admin (version 4.0.1)

2015-09-10 Thread Ryne Everett
This is fixed in master. See https://github.com/stephenmcd/mezzanine/issues/1366. On Thu, Sep 10, 2015 at 2:55 AM, Andrey inte wrote: > > I have a duplicated set of fields in user admin form. > > The formset is empty; nothing happens if I enter any information in the > duplicated (lower) set of

Re: [mezzanine-users] duplicated fieldset for user profile in admin (version 4.0.1)

2015-09-10 Thread Andrey inte
Thanks for the insight; though it half-solved my problem. To get rid of the *PROFILE* extra fields, I added $("#id_userprofile-__prefix__-last_modified_0").parent().parent().parent().parent().remove(); Seems ugly, thought On Friday, September 11, 2015 at 2:30:41 AM UTC+9, Ryne Everett wrote

Re: [mezzanine-users] duplicated fieldset for user profile in admin (version 4.0.1)

2015-09-12 Thread Ryne Everett
Hmm, that is strange. The __prefix__ elements are templates that are supposed to be hidden with CSS. (They are cloned and replaced with correct values by inlines.js.) But I'm not seeing any `vDateField` templates, hidden or visible, in my projects. On Thu, Sep 10, 2015 at 9:45 PM, Andrey inte wro