Gonzalo Amadio
Gonzalo Amadio
I think you can configure that with the setting: SAFE_DELETE_FIELD_NAME Check this! https://github.com/makinacorpus/django-safedelete/blob/master/safedelete/config.py
You are overriding the `get_queryset` method of the manager that is where _safedelete_visibility is set. As. @Gagaro points you have two solitions: 1) ``` class MyQuerySet(SafeDeleteQueryset): def active(self): return self.filter(is_active=True)...
Ok, for my problem number two. I have solved it adding allauth urls . `url(r'^account/', include('allauth.urls')),` Is it the right solution? If yes, why? and also should be added to...
> Hey, > Did you ever figure out why adding: > > url(r'^account/', include('allauth.urls')), > > got rid of the error. I have just came across the same issue myself,...