gitextract_18qginr2/ ├── .editorconfig ├── .git-blame-ignore-revs ├── .github/ │ ├── actions/ │ │ └── build-js/ │ │ └── action.yml │ └── workflows/ │ ├── ci.yml │ └── code_quality.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── __init__.py ├── cookie_consent/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── cache.py │ ├── conf.py │ ├── fixtures/ │ │ └── common_cookies.json │ ├── forms.py │ ├── locale/ │ │ ├── en/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── nl/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── oc/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── pt_BR/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ └── sl/ │ │ └── LC_MESSAGES/ │ │ ├── django.mo │ │ └── django.po │ ├── management/ │ │ ├── __init__.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── prune_cookie_consent_logs.py │ ├── middleware.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_logitem.py │ │ ├── 0003_alter_cookiegroup_varname.py │ │ ├── 0004_cookie_natural_key.py │ │ └── __init__.py │ ├── models.py │ ├── processor.py │ ├── py.typed │ ├── templates/ │ │ └── cookie_consent/ │ │ ├── _cookie_group.html │ │ ├── base.html │ │ └── cookiegroup_list.html │ ├── templatetags/ │ │ ├── __init__.py │ │ └── cookie_consent_tags.py │ ├── urls.py │ ├── util.py │ └── views.py ├── docs/ │ ├── Makefile │ ├── changelog.rst │ ├── check_sphinx.py │ ├── concept.rst │ ├── conf.py │ ├── contributing.rst │ ├── example_app.rst │ ├── index.rst │ ├── javascript.rst │ ├── make.bat │ ├── migrating-1.0.rst │ ├── quickstart.rst │ ├── reference/ │ │ ├── api_middleware.rst │ │ ├── api_models.rst │ │ ├── api_templatetags.rst │ │ ├── api_util.rst │ │ ├── api_views.rst │ │ ├── index.rst │ │ └── management_commands.rst │ ├── settings.rst │ └── usage.rst ├── js/ │ ├── .nvmrc │ ├── README.md │ ├── package.json │ ├── src/ │ │ ├── cookiebar.ts │ │ └── index.ts │ └── tsconfig.json ├── pyproject.toml ├── testapp/ │ ├── __init__.py │ ├── fixture.json │ ├── settings.py │ ├── static/ │ │ └── styles.css │ ├── templates/ │ │ ├── show-cookie-bar-script.html │ │ └── test_page.html │ ├── urls.py │ └── views.py ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_admin.py │ ├── test_cache.py │ ├── test_cookie_group_model.py │ ├── test_cookie_model.py │ ├── test_javascript_cookiebar.py │ ├── test_middleware.py │ ├── test_models.py │ ├── test_prune_cookie_consent_logs.py │ ├── test_settings.py │ ├── test_templatetags.py │ ├── test_util.py │ └── test_views.py └── tox.ini