معرفی شرکت ها


django-cookiebanner-0.2.8


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

-
ویژگی مقدار
سیستم عامل -
نام فایل django-cookiebanner-0.2.8
نام django-cookiebanner
نسخه کتابخانه 0.2.8
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Andreas Nüßlein
ایمیل نویسنده andreas@nuessle.in
آدرس صفحه اصلی https://github.com/sinnwerkstatt/django-cookiebanner
آدرس اینترنتی https://pypi.org/project/django-cookiebanner/
مجوز GPL-3.0+
# Django-Cookiebanner ## Installation `pip install django-cookiebanner` ## Usage * Add `cookiebanner` to your `INSTALLED_APPS` * in your settings (`settings.py`) specify the different Cookie Groups: ```python from django.utils.translation import gettext_lazy as _ COOKIEBANNER = { "title": _("Cookie settings"), "header_text": _("We are using cookies on this website. A few are essential, others are not."), "footer_text": _("Please accept our cookies"), "footer_links": [ {"title": _("Imprint"), "href": "/imprint"}, {"title": _("Privacy"), "href": "/privacy"}, ], "groups": [ { "id": "essential", "name": _("Essential"), "description": _("Essential cookies allow this page to work."), "cookies": [ { "pattern": "cookiebanner", "description": _("Meta cookie for the cookies that are set."), }, { "pattern": "csrftoken", "description": _("This cookie prevents Cross-Site-Request-Forgery attacks."), }, { "pattern": "sessionid", "description": _("This cookie is necessary to allow logging in, for example."), }, ], }, { "id": "analytics", "name": _("Analytics"), "optional": True, "cookies": [ { "pattern": "_pk_.*", "description": _("Matomo cookie for website analysis."), }, ], }, ], } ``` * In your base template add the banner and the conditionals: ```djangotemplate {% load cookiebanner %} ... <body> {% cookiebanner_modal 'vanilla' %} ... <button onclick="document.querySelector('#cookiebannerModal').classList.remove('hidden')">change cookie preferences</button> {% cookie_accepted 'analytics' as cookie_analytics %} {% if cookie_analytics %} <script>... javascript for matomo ...</script> {% endif %} </body> ``` ### Custom Template You can create a custom template and use that instead of the default one. * Create a folder `cookiebanner/` and a file in one of your `templates/`-folders, e.g.: `templates/cookiebanner/mytemplate.html` * Use `{% cookiebanner_modal 'mytemplate' %}`


نیازمندی

مقدار نام
>=3.2 django


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl django-cookiebanner-0.2.8:

    pip install django-cookiebanner-0.2.8.whl


نصب پکیج tar.gz django-cookiebanner-0.2.8:

    pip install django-cookiebanner-0.2.8.tar.gz