{ "info": { "author": "Marc Widmer, Jonas Ohrstrom", "author_email": "marc@pbi.io, jonas@pbi.io", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3" ], "description": "Django Slick Admin\n===================\n\nA slick & clean look for your Django (>=1.9) admin interface.\n\n*Slick admin* works completely unobtrusive and does everything via CSS. \nWell not *everything* - there are some optional & tiny bits of JavaScript involved as well.\n\n*Slick admin* works with the standard Django admin - and comes with support for:\n\n - [django CMS](https://www.django-cms.org/en/) (>=3.2.0)\n - [django-admin-tools](https://github.com/django-admin-tools/django-admin-tools) [Dashboard](http://django-admin-tools.readthedocs.io/en/latest/dashboard.html)\n\n\nInstalling\n----------\n\nUsing the latest version from PyPI:\n\n pip install django-slick-admin\n\nUsing this GitHub repository:\n\n pip install -e \"git://github.com/palmbeach-interactive/django-slick-admin.git#egg=django-slick-admin\"\n\n\nThen add `django_slick_admin` to `INSTALLED_APPS`, before `django.contrib.admin`.\n\n\n### CMS front end editing\n\nTo have the same color schema in the CMS front end there is a template tag included which loads additional CSS styles\nif 'editing mode' is enabled. To use them load `slick_admin_tags` in your base template and add `slick_admin_cms_style` \nnext to `cms_toolbar`.\n\n {% load cms_tags sekizai_tags slick_admin_tags %}\n ...\n
\n {% cms_toolbar %}\n {% slick_admin_cms_style %}\n ...\n\n\nSettings\n--------\n\nTo have a consistent look both for front end editing and administrative interface there are some additional\nstyles available in 'cms mode'. \nThe 'cms mode' is automatically activated when `cms` is present in your `INSTALLED_APPS` - but you can also \noverride this behaviour with\n\n SLICK_ADMIN_CMS_ENABLED = True # False\n \nSame behaviour applies for the *admin-tools Dashboard*. Automatically set to `True` if `admin_tools.dashboard` in `INSTALLED_APPS`.\n\n SLICK_ADMIN_DASHBOARD_ENABLED = True # False\n \n \nStylesheet locations:\n\n SLICK_ADMIN_CSS =