some1ataplace
some1ataplace
According to the PR thread, if the user does not set COOKIE_CONSENT_NAME or leaves it as COOKIE_CONSENT_NAME = ' ' in their own settings.py, the default value with the bytes...
Make sure you are placing this entire highlighted code into your template: https://github.com/jazzband/django-cookie-consent/blob/master/tests/core/templates/test_page.html#L58-L108 Also don't forget to put this at the top of your template: `{% load cookie_consent_tags %}` `{%...
Maybe because in redis running this command to get the key value for `":1:cookie_consent_cache"`: `127.0.0.1:6379[1]> get ":1:cookie_consent_cache"` Returns what appears to look like a pickled object. To extract the value...
I am not sure. My guess is it has something to do with your code. When I use django-redis with my own project and the test app that comes with...
Maybe it is a middleware you are using that is causing the problem. Django-cookie-consent has had issues where it would not work with the django-honeypot middleware for example. I would...
Thanks for finding the cause of the issue. Maybe you can view the source code of something like this from one of our maintainers MrCordeiro https://pluckd.co/en/cookies/ There is not really...
If anyone knows how to read/write restructured text language or use sphinx then that would help resolve this issue. This seems to work if I do this: Download a zip...
This seems somewhat similar to issue #15 because the timestamp always changes. We could wipe out 2 issues if we improve the way things are done. We should all definitely...
Here are some changes to the above django template tag code based off @sergei-maertens feedback (please check): cookie_consent/templatetags/cookie_consent_tags.py: ``` #use an inclusion tag and include the path to the customizable...
Added this via PR #69