django-cookie-consent icon indicating copy to clipboard operation
django-cookie-consent copied to clipboard

Reusable application for managing various cookies and visitors consent for their use in Django project.

Results 59 django-cookie-consent issues
Sort by recently updated
recently updated
newest added

Currently, when dumping the configuration as fixtures, PKs are included. This may be problematic to share the same fixtures between different projects, or when moving them between staging -> production....

good first issue

```python dic = {'unclassified': '', 'marketing': '', 'statistic': ''} def dict_to_cookie_str(dic): return "|".join(["%s=%s" % (k, v) for k, v in dic.items() if v] ``` The result is that the function...

Good morning, I don't understand how to create a sessionid for guests on a website. This is a form site and I would like a person (not logged in) to...

Hi, I'm implementing your JS integration, and so far, so good. However, I noticed that you don't expose some useful variables or functions in the `cookiebar.module.js`. For example, `getCookieStatus`. We...

@jezdez I'm afraid only you can sort this out This project has some frontend tooling that we publish [here](https://github.com/jazzband/django-cookie-consent/pkgs/npm/django-cookie-consent). However, it seems that the package is not set to public,...

question

updates: - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.6.0...v5.0.0)

Hi there, just trying to wrap my head around the intricacies of GDPR here. My understanding is that we would have to remove a user's personal data on the back...

The Javascript integration documentation page includes this sample `onAccept` implementation: ```javascript function onAccept(event, cookieGroups) { ... } ``` which won't work as intended, as `cookieGroups` is actually passed as the...