Skip to content

perry/django-cookie-message

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-cookie-message

A simple middleware that uses the django messages framework to add a notification regarding the EU cookie directive.

If it can't detect a cookie about cookies, sets it and displays a message.

Installation

Install from pypi.

pip install django-cookie-message

In your settings:

  • Ensure the django messages framework is installed.
  • Add 'cookie_message' to INSTALLED_APPS.
  • Add 'cookie_message.middleware.CookieMessageMiddleware' to MIDDLEWARE_CLASSES.

Configuration

The message can be changed by overriding the cookies/message.html template.

The cookie can be changed by defining COOKIE_MESSAGE_KWARGS in your settings.py. The default is:

COOKIE_MESSAGE_KWARGS = {
    'key': 'cookie_message',
    'value': '',
    'max_age': 365 * 24 * 60 * 60, # One year.
    'expires': None,
    'path': '/',
    'domain': None,
    'secure': None,
    'httponly': False,
}

These are the arguments sent to set_cookie().

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%