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
424 stars 81 forks source link

Extra Acctions #142

Closed fjbardelli closed 4 years ago

fjbardelli commented 4 years ago

it is possible to add extas actions to (list, create, edit, delete) in the list.

For example Cancel, and change state, associated with a custom url.

Thank you

oscarmlage commented 4 years ago

Yes it is. If you open cruds_adminlte/templates/cruds/list.html around line 99, there is a {% block actions %} that you can extend in a custom template to put there all the custom actions you want.

fjbardelli commented 4 years ago

Thanks