django-cookie-consent
latest
  • Quickstart
  • Main concepts
  • Usage
  • Example app
  • Settings
  • Contributing
  • Changelog
  • Models
    • Cookie
      • Cookie.DoesNotExist
      • Cookie.MultipleObjectsReturned
      • Cookie.save()
    • CookieGroup
      • CookieGroup.DoesNotExist
      • CookieGroup.MultipleObjectsReturned
      • CookieGroup.save()
    • LogItem
      • LogItem.DoesNotExist
      • LogItem.MultipleObjectsReturned
  • Views
  • Util
  • Template tags
  • Middleware
django-cookie-consent
  • Models
  • Edit on GitHub

Models

class cookie_consent.models.Cookie(id, cookiegroup, name, description, path, domain, created)
exception DoesNotExist
exception MultipleObjectsReturned
save(*args, **kwargs)

Save the current instance. Override this in a subclass if you want to control the saving process.

The ‘force_insert’ and ‘force_update’ parameters can be used to insist that the “save” must be an SQL insert or update (or equivalent for non-SQL backends), respectively. Normally, they should not be set.

class cookie_consent.models.CookieGroup(id, varname, name, description, is_required, is_deletable, ordering, created)
exception DoesNotExist
exception MultipleObjectsReturned
save(*args, **kwargs)

Save the current instance. Override this in a subclass if you want to control the saving process.

The ‘force_insert’ and ‘force_update’ parameters can be used to insist that the “save” must be an SQL insert or update (or equivalent for non-SQL backends), respectively. Normally, they should not be set.

class cookie_consent.models.LogItem(id, action, cookiegroup, version, created)
exception DoesNotExist
exception MultipleObjectsReturned
Previous Next

© Copyright 2013, Bojan Mihelac. Revision cbc03550.

Built with Sphinx using a theme provided by Read the Docs.
Read the Docs v: latest
Versions
latest
stable
Downloads
On Read the Docs
Project Home
Builds