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

Change in requirements (ajax) and solving Issue #89 #95

Closed miguelmendez17 closed 5 years ago

miguelmendez17 commented 5 years ago

In cruds_adminlte/crud.py a route was added by default in case it does not find the one that the user changes

luisza commented 5 years ago

Hi, "/" always be there because by default is called with

        basename + '/create.html'
        basename + '/detail.html'
        basename + '/update.html'
        basename + '/list.html'
        basename + '/delete.html'

It's good idea when works with Inline Cruds, and overwrite the basename so we guaranties that always run as expected.

About djangoajax 3.0.2, the maintainer drop de support of js so inline is broken with this version, 2.3.7 is the last version with static on djangoajax so we suggest 2 things:

1) downgrade djangoajax to 2.3.7 2) Include the static js files of djangoajax in our statics. 3) Find other way to support inline management

oscarmlage commented 5 years ago

Ok with me, merged!