Hi ,
There is a"list_editable" option in django admin if we wanted to make inline edits.
Here are the changes i did to implement the same:
- $('#csname').editable({
- type: 'text',
- pk: 1,
- url: '/post',
- title: 'Enter csname'
- });
Have included the relevant css and js files in the Media class of the Model Admin. Not able to make it work.
Could you please help to share some examples where xEditable is implemented in Django Admin.
Thank you.
Regards,
Venu