Django Admin inline-editable like Flask admin?

Flask Admin has this really nice inline-editable option. Is there something similar in Django-Admin?

Yes, there is "list_editable". Unfortunately, this is poor usability and I much more prefere the flask-Admin approach:

  • editable fields are underlined
  • Click -> popup opens where you can edit
  • Save -> save via Ajax
Back to Top