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 83 forks source link

URL & Acctions #52

Closed fjbardelli closed 6 years ago

fjbardelli commented 6 years ago

Is it possible to have two urls for a list with different html templates, for example to have one with different actions to the other?

Thank you so much

luisza commented 6 years ago

Yes, it's possible using namespace and template_name_base.

With namespace you can have 2 set of view for the same model and with template_name_base you can overwrite what template you load

fjbardelli commented 6 years ago

Thanks