django-cookie-consent
django-cookie-consent copied to clipboard
Reusable application for managing various cookies and visitors consent for their use in Django project.
The SuccessURLAllowedHostsMixin was replaced by RedirectURLMixin as per Django 4.1 documentation "The undocumented django.contrib.auth.views.SuccessURLAllowedHostsMixin mixin is replaced by RedirectURLMixin." Source https://docs.djangoproject.com/en/4.1/releases/4.1/
Allow users to click the accept button on the cookie bar and automatically refresh the page and load in the cookies that they did not have before on that page....
This issue tracks the implementation of the [Jazzband guidelines](https://jazzband.co/about/guidelines) for the project [django-cookie-consent](https://github.com/jazzband/django-cookie-consent) It was initiated by @bmihelac who was automatically assigned in addition to the [Jazzband roadies](https://jazzband.co/roadies). See the...
It seems that at the current state the CleanCookiesMiddleware does not work in Django 2.x as is: TypeError: 'CleanCookiesMiddleware' object is not callable This error is solved by: ``` def...
I had some trouble setting up this app in my project, until I realized that in my `settings.py` I need the to set the `COOKIE_CONSENT_NAME` variable. That is, I added...
I'm interested in using this project to deal with the GDPR, etc. but, unfortunately, it seems to not be compatible with Django page cache that I'm using intensively, as most...