gitextract_fjw6171a/ ├── .coveragerc ├── .csscomb.json ├── .dockerignore ├── .editorconfig ├── .eslintrc.js ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── codeql.yml │ ├── lint.yml │ ├── publish-to-live-pypi.yml │ ├── publish-to-test-pypi.yml │ ├── screenshots.yml │ └── test.yml ├── .gitignore ├── .nvmrc ├── .pre-commit-config.yaml ├── .tx/ │ └── config ├── CHANGELOG.rst ├── Dockerfile ├── Dockerfile.django-2.2 ├── Dockerfile.django-3.2 ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── djangocms_admin_style/ │ ├── __init__.py │ ├── locale/ │ │ ├── de/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── en/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── es/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── fr/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── it/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── lt/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── ru/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ └── uk/ │ │ └── LC_MESSAGES/ │ │ ├── django.mo │ │ └── django.po │ ├── models.py │ ├── sass/ │ │ ├── components/ │ │ │ ├── _base.scss │ │ │ ├── _changelist.scss │ │ │ ├── _cms-update.scss │ │ │ ├── _cmsplaceholders.scss │ │ │ ├── _content.scss │ │ │ ├── _dashboard.scss │ │ │ ├── _dialog.scss │ │ │ ├── _django-nested-admin.scss │ │ │ ├── _drag-and-drop.scss │ │ │ ├── _filer.scss │ │ │ ├── _footer.scss │ │ │ ├── _forms.scss │ │ │ ├── _header.scss │ │ │ ├── _iconography.scss │ │ │ ├── _icons.scss │ │ │ ├── _login.scss │ │ │ ├── _messages.scss │ │ │ ├── _mobile.scss │ │ │ ├── _modal.scss │ │ │ ├── _shortcuts.scss │ │ │ ├── _sideframe.scss │ │ │ ├── _sticky-nav.scss │ │ │ └── _tables.scss │ │ ├── djangocms-admin.scss │ │ ├── libs/ │ │ │ ├── _html5-boilerplate.scss │ │ │ ├── _iconfont.scss │ │ │ ├── _normalize.scss │ │ │ └── html5-boilerplate/ │ │ │ ├── _fonts.scss │ │ │ ├── _helpers.scss │ │ │ ├── _media.scss │ │ │ ├── _reset.scss │ │ │ └── _styles.scss │ │ ├── mixins/ │ │ │ ├── _all.scss │ │ │ ├── _custom.scss │ │ │ └── _zindex.scss │ │ └── settings/ │ │ ├── _all.scss │ │ ├── _cms.scss │ │ ├── _custom.scss │ │ └── _reset-django-dark-mode.scss │ ├── static/ │ │ └── djangocms_admin_style/ │ │ ├── css/ │ │ │ └── djangocms-admin.css │ │ └── js/ │ │ ├── base-admin.js │ │ ├── dist/ │ │ │ ├── bundle.adminstyle.min.js │ │ │ └── bundle.adminstyle.min.js.LICENSE.txt │ │ └── modules/ │ │ ├── dark-mode.js │ │ ├── datetimefields.js │ │ ├── drag-touch-support.js │ │ ├── form-submit.js │ │ ├── related-widget-wrapper.js │ │ ├── toolbar-dropdown.js │ │ ├── ui-fixes.js │ │ └── update-notification.js │ ├── templates/ │ │ └── admin/ │ │ ├── base_site.html │ │ ├── delete_confirmation.html │ │ ├── delete_selected_confirmation.html │ │ └── inc/ │ │ ├── branding.html │ │ ├── cms_upgrade_notification.html │ │ ├── extrahead.html │ │ ├── extrastyle.html │ │ ├── nav-global.html │ │ ├── title.html │ │ └── userlinks.html │ └── templatetags/ │ ├── __init__.py │ └── admin_style_tags.py ├── gulpfile.js ├── package.json ├── pyproject.toml ├── requirements.in ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── frontend/ │ │ ├── .eslintrc.js │ │ ├── casperjs.conf.js │ │ └── integration/ │ │ ├── addNewUser.js │ │ ├── dashboard.js │ │ ├── handlers/ │ │ │ ├── externalMissing.js │ │ │ ├── loadFailures.js │ │ │ ├── missingPages.js │ │ │ ├── pageErrors.js │ │ │ └── suiteFailures.js │ │ ├── loginAdmin.js │ │ ├── pagetree.js │ │ └── setup.js │ ├── requirements/ │ │ ├── base.txt │ │ ├── django-2.2.txt │ │ ├── django-3.2.txt │ │ ├── django-4.2.txt │ │ └── django-5.0.txt │ ├── settings-docker.py │ ├── settings.py │ ├── templates/ │ │ ├── base.html │ │ ├── fullwidth.html │ │ ├── page.html │ │ └── simple.html │ ├── test_migrations.py │ └── test_templatetags.py ├── tox.ini └── webpack.config.js