asifpy / django-crudbuilder

Generic CRUD implementation in Django
https://django-crudbuilder.readthedocs.org/en/latest/index.html
Apache License 2.0
193 stars 67 forks source link

Include erro in Django >1.10 #55

Closed marcoshemann closed 6 years ago

marcoshemann commented 6 years ago

Hi Asifpy I detect a import error using with Django > 1.10 In view.py line 1

from django.core.urlresolvers import reverse_lazy

from django.urls import reverse_lazy Regards

marcoshemann commented 6 years ago

More one in mixins.py line 34

if not request.user.is_authenticated():

if not request.user.is_authenticated:

asifpy commented 6 years ago

django.core.urlresolvers and is_authenticated() will continue to work until Django 2.0 for backwards compatibility. Currently crudbuilder supports 1.11