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

Common cruds url + dashboard #32

Closed oscarmlage closed 7 years ago

oscarmlage commented 7 years ago

Now, if we want to add a crud for a couple of apps we have to add the code:

urlpatterns += crud_for_app('app_one')
urlpatterns += crud_for_app('app_two')

And the urls generated are:

Would be nice to have all that urls "inside" a common url, I mean something like:

And would be really nice also to have any kind of dashboard: #33