oscarmlage / django-cruds-adminlte

django-cruds is simple drop-in django app that creates CRUD for faster prototyping
BSD 3-Clause "New" or "Revised" License
425 stars 82 forks source link

Inline forms are not customizable #21

Closed oscarmlage closed 7 years ago

oscarmlage commented 7 years ago

If you define a custom form for the inlines, it does not work, it loads the default form:

new line

image

new invoice's line

image

oscarmlage commented 7 years ago

Yes they are:

image

You have to define the add_form and update_form in the InlineAjaxCRUD:

class Lines_AjaxCRUD(InlineAjaxCRUD):
    model = Line
    base_model = Invoice
    inline_field = 'invoice'
    add_form = LineForm
    update_form = LineForm
    ...