You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

django-cookie-consent-gutsh

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-cookie-consent-gutsh

Cookie consent component for any Django web-site


Maintainers
1

Readme

Cookie consent is a Django app to show consent component for web-cookies.

Quick start

  1. Add "cookie_consent" to your INSTALLED_APPS setting like this:
    INSTALLED_APPS = [
        "cookie_consent",
        ...,
    ]
  1. Include the cookie_consent URLconf in your project urls.py like this:
    path("cookie_consent/", include("cookie_consent.urls")),
  1. Run python manage.py migrate to create the models.
  2. Include consent template in your web-site templates.

For example, I've included that text near the and of my base template:

{% block cookie_consent %}
  <link rel="stylesheet" href="{% static 'cookie_consent/css/index.css' %}">
  {% include 'cookie_consent/includes/consent.html' with consent_text='We use cookies to understand your interactions with this web-site.' %}
  {# the default for `consent_text` is 'We are using cookies to make this website fully functional.' #}
  <script defer src="{% static 'cookie_consent/js/main.js' %}"></script>
{% endblock %}

Don't forget to serve that script and css files! You can find them in distribution, css and js are in both source and compiled forms and are fine (as long as you run collectstatic command).

  1. Start the development server and visit necessary pages.

Coming up next

  • Improve naming more
  • Tests (front-end too!)

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc