{ "info": { "author": "David Jean Louis", "author_email": "izimobil@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django :: 1.10", "Framework :: Django :: 1.11", "Framework :: Django :: 1.7", "Framework :: Django :: 1.8", "Framework :: Django :: 1.9", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "\ndjango-admin-tools\n==================\n\n.. image:: https://travis-ci.org/django-admin-tools/django-admin-tools.svg?branch=master\n :target: https://travis-ci.org/django-admin-tools/django-admin-tools\n :alt: Build status\n.. image:: https://codecov.io/gh/django-admin-tools/django-admin-tools/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/django-admin-tools/django-admin-tools\n :alt: Test coverage status\n.. image:: https://img.shields.io/pypi/l/django-admin-tools.svg\n.. image:: https://img.shields.io/pypi/pyversions/django-admin-tools.svg\n.. image:: https://img.shields.io/badge/django-1.7%20or%20newer-green.svg\n\ndjango-admin-tools is a collection of extensions/tools for the default django \nadministration interface, it includes:\n\n* a full featured and customizable dashboard;\n* a customizable menu bar;\n* tools to make admin theming easier.\n\nThe code is hosted on `Github `_. \n\nDjango-admin-tools is generously documented, you can \n`browse the documentation online \n`_.\na good start is to read `the quickstart guide \n`_.\n\nThe project was created by `David Jean Louis `_ and was previously hosted on `Bitbucket `_. \n\nPlease join the `mailing list `_ if you want to discuss of the future of django-admin-tools.\n\n************\nRequirements\n************\n\ndjango-admin-tools requires Python 2.7 or Python 3.3 or newer and Django 1.7 or newer.\n\nFor older python and django versions please use the 0.5.2 version of django-admin-tools which is available on Pypi.\n\n************\nInstallation\n************\n\nTo install django-admin-tools, run the following command inside this directory:\n\n python setup.py install\n\nIf you have the Python **easy_install** utility available, you can also type \nthe following to download and install in one step::\n\n easy_install django-admin-tools\n\nOr if you're using **pip**::\n\n pip install django-admin-tools\n\nOr if you'd prefer you can simply place the included \"admin_tools\" directory \nsomewhere on your python path, or symlink to it from somewhere on your Python \npath; this is useful if you're working from a Mercurial checkout.\n\nAn `installation guide `_ is available in the documentation.\n\n*************\nDocumentation\n*************\n\n`Extensive documentation `_ is available, it was made with the excellent `Sphinx program `_\n\n************\nTranslations\n************\n\nThere is a `a transifex project `_ for django-admin-tools.\n\n************\nScreenshots\n************\n\nThe django admin login screen:\n\n.. image:: http://www.izimobil.org/django-admin-tools/images/capture-1.png\n :alt: The django admin login screen\n\n\nThe admin index dashboard:\n\n.. image:: http://www.izimobil.org/django-admin-tools/images/capture-2.png\n :alt: The admin index dashboard\n\n\nThe admin menu:\n\n.. image:: http://www.izimobil.org/django-admin-tools/images/capture-3.png\n :alt: The admin menu\n\nDashboard modules can be dragged, collapsed, closed etc.:\n\n.. image:: http://www.izimobil.org/django-admin-tools/images/capture-4.png\n :alt: Dashboard modules can be dragged, collapsed, closed etc. \n\nThe app index dashboard:\n\n.. image:: http://www.izimobil.org/django-admin-tools/images/capture-5.png\n :alt: The app index dashboard\n\n\n\n============================\ndjango-admin-tools changelog\n============================\n\nVersion 0.8.1, 30 May 2017:\n---------------------------\n\nThis release adds support for Django 1.11 and fixes various issues.\n\n* Django 1.11 support\n* Added app config to enable label override to avoid app name collisions\n* Security fix: prevent removing users bookmarks by knowing the id\n* Better support for custom user models\n* Fixed docstrings\n\n\nVersion 0.8.0, 12 August 2016:\n------------------------------\n\nThis release adds support for Django 1.10 and fixes various bugs and documentation issues.\n\n* Django 1.10 support\n* Dashboard pre_content and post_content now accept HTML by default\n* Use the staff_member_required decorator instead of login_required\n* Use user.get_username() instead of user.username\n* Fixed wrong template loader class name in a warning issued by DAT\n* Fixed various typos in docs and docstrings\n\n\nVersion 0.7.2, 14 January 2016:\n--------------------------------\n\nBugfix release.\n\n* Removed the config check that was causing issues in certain situations, we now use the builtin django system checks framework\n* Removed superfluous \"trans\" calls in admin_tools templates\n* Full PEP8 compliance\n\n\nVersion 0.7.1, 27 November 2015:\n--------------------------------\n\nBugfix release.\nThis release fixes an incompatibility with ``django.template.loaders.cached.Loader``.\n\n\nVersion 0.7.0, 5 November 2015:\n-------------------------------\n\n* IMPORTANT INFORMATION, PLEASE READ: *\n\nStarting from this version (0.7.0) you must add ``admin_tools.template_loaders.Loader`` to your templates loaders variable in your settings file, see here for details:\nhttps://django-admin-tools.readthedocs.io/en/latest/configuration.html\n\nChange log:\n\n* Support for Django 1.9 and the new admin flat theme\n* Added a custom template loader (based on django-apptemplates) that allows us to extends admin templates instead of overriding them\n* Fixed a lot of warnings\n* Fixed other minor issues and typos\n\n\nVersion 0.6.0, 7 July 2015:\n---------------------------\n\n* VERY IMPORTANT INFORMATION, PLEASE READ: *\n\nStarting from this version (0.6.0) django-admin-tools is no longer compatible with Django 1.6 or lower.\n\nUsers of older django version should use the 0.5.2 version available on pypi.\n\nIf you are already using django-admin-tools with django <= 1.6, be sure to pin your requirements file to a specific version, eg:\ndjango-admin-tools==0.5.2\nIf you don't do this, a \"pip install --upgrade\" will break your admin site.\nYou have been warned !\n\nNow for the actual change log:\n\n* Dropped support for django 1.6 or lower\n* Added support for django 1.8\n* Cleaned up old compatibility code\n* Use django builtin staticfiles\n* Various improvements and bug fixes\n\n\nVersion 0.5.2, 11 August 2014:\n------------------------------\n\n* Added django 1.5 and 1.6 support\n* Django 1.7 is supported but migrations still using south\n* Added python 3 support\n* Add some blocks to facilitate template inheritance\n* Add management command to remove the dashboard preferences\n* Fixed issue #126 (feedparser deprecation warning)\n* Fixed issue #133 (recent Actions links have an unecessary /admin/ prefix)\n* Use i18n app name in app_list, menu and breadcrumb of app_index\n* Use user.get_short_name and user.get_username in admin header (fixes #121)\n* Better docstring for AppList and ModelList modules\n* Eliminated jumping to top of page when clicking collapse/add/remove buttons on dashboard modules\n\nThanks to all the folks who contributed to this release.\n\n\nVersion 0.5.1, 13 March 2013:\n-----------------------------\n\nBugfix release, everyone using django < 1.5 should upgrade\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis release fixes a bug that was breaking the LinkList dashboard module\n(thanks Iacopo Spalletti for the pull request).\n\n\nVersion 0.5.0, 06 March 2013:\n-----------------------------\n\nImportant information if you are upgrading from a previous version\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nStarting from this version, django-admin-tools requires Django 1.3 or\nsuperior. If you're running Django < 1.3, DO NOT UPGRADE and stay with\nthe 0.4.1 version.\n\n* Compatibility with Django 1.4 and Django 1.5\n* Upgraded to latest jQuery / jQuery-ui\n* Many bug fixes and small improvements\n\n\nVersion 0.4.1, 15 November 2011:\n--------------------------------\n\n* Static files and django 1.3 support\n* Fixed modules instanciation issues (fixes #65)\n* Nested groups support & better html id generation (fixes issue #70)\n* Fixed various js and css problems\n* Added translation for Finnish + updates on other languages\n* More robust dashboard layout\n* Added force_show_title property to Group module\n\n\nVersion 0.4.0, 13 December 2010:\n--------------------------------\n\nImportant information if you are upgrading from a previous version\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis release of django-admin-tools introduces support for south database\nmigrations, if you are **not** using south you can skip this step.\n\nExisting django-admin-tools should do the following::\n\n python manage.py migrate --fake admin_tools.dashboard\n python manage.py migrate --fake admin_tools.menu\n\nNew users should do::\n\n python manage.py migrate admin_tools.dashboard\n python manage.py migrate admin_tools.menu\n\nMajor changes\n~~~~~~~~~~~~~\n\n* big improvements of the API (see the dashboard and menu documentation for\n details), the old API is still supported but now deprecated;\n* added a ModelList menu item;\n* custom and multiple admin sites basic support;\n* better integration with django-grappelli;\n* django south support.\n\nBugfixes and minor changes\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n* Fixed issue #40 (python 2.5 compatibility);\n* Fixed issue #49: disable rendering of empty group modules;\n* Fixed issue #51: more robust test runner;\n* Fixed issues #57 and #58: updated custom dashboard and menu template files\n to reflect the current code;\n* Fixed issue #60: explicitely set color for links in module content;\n* Some fixes for the future django 1.3;\n* Fixes issue #61: Create empty preferences instance if user has no\n preferences saved yet. \n* Fixed issue #62: updated base template to reflect django 1.2 changes;\n* Fixed various js namespace pollutions;\n* Improved docs;\n* CZ locale support.\n\nFor more informations please see:\nhttp://bitbucket.org/izi/django-admin-tools/changesets\n\n\nVersion 0.3.0, 16 July 2010:\n----------------------------\n\nMajor changes\n~~~~~~~~~~~~~\n\n* added tests infrastructure, code coverage is around 70%;\n* import paths and class names are changed. Old class names and paths are\n deprecated but still work;\n* ``dashboard.modules.AppList``, ``dashboard.modules.ModelList`` and\n ``menu.items.AppList`` now have ability to display any models from different\n apps (using glob syntax) via ``models`` and ``exclude`` parameters.\n The order is now preserved. See #15;\n* implemented dashboard module groups : you can now group modules in tabs,\n accordion or in a stacked layout.\n\nBugfixes and minor changes\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n* moved the menu and dashboard template dirs in a \"admin_tools\" directory to\n avoid name conflicts with other apps, for example: django-cms \n (see: http://github.com/digi604/django-cms-2.0/issues/issue/397/);\n* fixed bookmark bugs. The saved url was urlencoded, so we need to decode it\n before we save it. Added a clean_url method to the ``BookmarkForm``.\n Fixes #25;\n* build urlpatterns conditionally regarding the content of ``INSTALLED_APPS``;\n* better display of selected menu items;\n* avoid a useless ajax GET request for retrieving dashboard preferences;\n* upgraded jquery and jquery ui and renamed the files to more generic names;\n* don't show bookmark form if ``NoReverseError``. This was breaking the \n ``django.contrib.auth`` unit tests;\n* fixed url lookup for remove bookmark form;\n* fixed issue #26 (menu bar showing for non-staff users) and also updated\n templates to match the django 1.2 templates;\n* fixed issue #29 : Django 1.2 admin base template change;\n* changed the way js files are loaded, hopefully now they are loaded \n syncronously (fixes issue #32);\n* fixed issue #33: empty applist menu items should not be displayed;\n* fixed issue #34: can't drag modules into an empty column; \n* fixed issue #35 (wrong docstring for menu).\n \nNew class names and paths\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**admin_tools.dashboard**:\n\n- admin_tools.dashboard.models.Dashboard => admin_tools.dashboard.Dashboard\n- admin_tools.dashboard.models.DefaultIndexDashboard => admin_tools.dashboard.DefaultIndexDashboard\n- admin_tools.dashboard.models.DefaultAppIndexDashboard => admin_tools.dashboard.DefaultAppIndexDashboard\n- admin_tools.dashboard.models.AppIndexDashboard => admin_tools.dashboard.AppIndexDashboard\n- admin_tools.dashboard.models.DashboardModule => admin_tools.dashboard.modules.DashboardModule\n- admin_tools.dashboard.models.AppListDashboardModule => admin_tools.dashboard.modules.AppList\n- admin_tools.dashboard.models.ModelListDashboardModule => admin_tools.dashboard.modules.ModelList\n- admin_tools.dashboard.models.LinkListDashboardModule => admin_tools.dashboard.modules.LinkList\n- admin_tools.dashboard.models.FeedDashboardModule => admin_tools.dashboard.modules.Feed\n\n**admin_tools.menu**:\n\n- admin_tools.menu.models.Menu => admin_tools.menu.Menu\n- admin_tools.menu.models.DefaultMenu => admin_tools.menu.DefaultMenu\n- admin_tools.menu.models.MenuItem => admin_tools.menu.items.MenuItem\n- admin_tools.menu.models.AppListMenuItem => admin_tools.menu.items.AppList\n- admin_tools.menu.models.BookmarkMenuItem => admin_tools.menu.items.Bookmarks\n\n\nVersion 0.2.0, 15 March 2010:\n-----------------------------\n\n* bookmarks are now being saved in the database\n (fixes issue #20, thanks @alexrobbins);\n* dashboard preferences are also saved in the database;\n* added support for django-staticfiles STATIC_URL settings\n (fixes issue #21, thanks @dstufft);\n* fixed issue #23: render_theming_css tag does not work on windows;\n* added polish, italian, greek and brazilian locales;\n* updated docs.\n\nBackwards incompatible changes in 0.2.0\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nNow, django-admin-tools stores menu and dashboard preferences in the database,\nso you'll need to run syncdb and to add the django-admin-tools urls to your\nurlconf. These steps are described in details in the documentation.\nYou'll also need to add ``admin_tools`` to your ``INSTALLED_APPS`` for the\nlocales to work (this was not documented in previous versions).\n\n\nVersion 0.1.2, 13 February 2010:\n--------------------------------\n\n* fixed documentation issues;\n* added locales;\n* fixed issue #9: don't fail when feedparser is not installed;\n* fixed issue #5: implemented dashboard layout persistence in cookies;\n* enable all modules by default in the default dashboard;\n* fixed recent actions log entry urls when displayed in app_index;\n* added a \"bookmarks\" menu item and the code to manage bookmarks;\n* fixed jquery issues with django 1.2.\n\n\nVersion 0.1.1, 10 February 2010:\n--------------------------------\n\n* fixed issue #2: template tag libraries have generic names;\n* changed the way dashboards are selected, don't rely on request variables but\n pass an extra argument to the template tag instead (fixes issue #3);\n* fixed MANIFEST.in (fixes issue #1);\n* better setup.py file.\n\n\nVersion 0.1.0, 10 February 2010:\n--------------------------------\n\n* Initial release\n\n", "description_content_type": null, "docs_url": "https://pythonhosted.org/django-admin-tools/", "download_url": "https://pypi.python.org/packages/source/d/django-admin-tools/django-admin-tools-0.8.1.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/django-admin-tools/django-admin-tools", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "django-admin-tools", "package_url": "https://pypi.org/project/django-admin-tools/", "platform": "", "project_url": "https://pypi.org/project/django-admin-tools/", "project_urls": { "Download": "https://pypi.python.org/packages/source/d/django-admin-tools/django-admin-tools-0.8.1.tar.gz", "Homepage": "https://github.com/django-admin-tools/django-admin-tools" }, "release_url": "https://pypi.org/project/django-admin-tools/0.8.1/", "requires_dist": null, "requires_python": "", "summary": "A collection of tools for the django administration interface", "version": "0.8.1" }, "last_serial": 2909321, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "0166d8398c72d413ec8412c451654cb6", "sha256": "d150b6896cb11ae1124b54a404a0f23498600057511641db21567df7ceee6b60" }, "downloads": -1, "filename": "django-admin-tools-0.1.0.tar.gz", "has_sig": false, "md5_digest": "0166d8398c72d413ec8412c451654cb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 583351, "upload_time": "2014-08-11T15:58:25", "url": "https://files.pythonhosted.org/packages/99/03/49b77c094b9d721d2e47113e217bbff4ea1c8c08802cbb1bc044201034d7/django-admin-tools-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "8bcc437641b89fa42ecf7abb1680e6e2", "sha256": "48c08d472e03b8ea5a69dc181ff29827bc3beb45016bb21d234a1dd79224f679" }, "downloads": -1, "filename": "django-admin-tools-0.1.1.tar.gz", "has_sig": false, "md5_digest": "8bcc437641b89fa42ecf7abb1680e6e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 680050, "upload_time": "2014-08-11T15:58:52", "url": "https://files.pythonhosted.org/packages/51/10/ab2151e87807116c7bb3694d89ebb1e66e10529918939abe42514aaaec03/django-admin-tools-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "ebb6d271cb86177d768eca72e212aa7b", "sha256": "17ba0937cf5665be9cb6ed79d1dae8fb31ba6397b65fe2e2beb629922f6074ef" }, "downloads": -1, "filename": "django-admin-tools-0.1.2.tar.gz", "has_sig": false, "md5_digest": "ebb6d271cb86177d768eca72e212aa7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 694892, "upload_time": "2014-08-11T15:59:13", "url": "https://files.pythonhosted.org/packages/08/67/228fd1633999231a3f2029386094cd588e6774d002f66938f82d9a137088/django-admin-tools-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "7ad05abad20a1d6b403a9bf9428b051a", "sha256": "cb043cfda62a011626390d42bf80eed97eee1e793b18a45c27d98f57791c1120" }, "downloads": -1, "filename": "django-admin-tools-0.2.0.tar.gz", "has_sig": false, "md5_digest": "7ad05abad20a1d6b403a9bf9428b051a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 713262, "upload_time": "2014-08-11T15:59:34", "url": "https://files.pythonhosted.org/packages/b2/08/ee4b6a8f4177c3d0c0176ea879143ae746fda66901c9ea458a8c6c583fec/django-admin-tools-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "36cce16586ad36d5510a59a99525bcd0", "sha256": "b649de352260d19bd0f7373c67160c308d7d0e1344bb434d61b8e25e8d0d6d7f" }, "downloads": -1, "filename": "django-admin-tools-0.3.0.tar.gz", "has_sig": false, "md5_digest": "36cce16586ad36d5510a59a99525bcd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 800916, "upload_time": "2014-08-11T15:59:59", "url": "https://files.pythonhosted.org/packages/92/c8/3439a54628e13f4d8076e5fc686d52a787b17eadeb33f9ce60dfc0c2b7a0/django-admin-tools-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "af73ad1a5808339e6480d3f9e16b326c", "sha256": "fada7793f8e488993cea95bcb92ce2093805428409095bd144e0ff287f2b580b" }, "downloads": -1, "filename": "django-admin-tools-0.4.0.tar.gz", "has_sig": false, "md5_digest": "af73ad1a5808339e6480d3f9e16b326c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 818307, "upload_time": "2010-12-13T12:31:34", "url": "https://files.pythonhosted.org/packages/a2/35/b52b09ad27f16ec29716a651d85be520ce6f24aac478a584ceda566de1c7/django-admin-tools-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "7ec8a5cc8ea33998527f4cc3db8383d5", "sha256": "0a9b42af9f498e79cef5be4538ef4d0ee3b0ba92893aa0c1d7a61de65407da84" }, "downloads": -1, "filename": "django-admin-tools-0.4.1.tar.gz", "has_sig": false, "md5_digest": "7ec8a5cc8ea33998527f4cc3db8383d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 513646, "upload_time": "2014-08-11T16:00:51", "url": "https://files.pythonhosted.org/packages/cd/7b/b43d5cddfa4111c3d5cc6a3c94b08064ea0459458d165af099e382d9e8a1/django-admin-tools-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "b1df16f427fac59e719cd88c22d4eaf2", "sha256": "9d14de7dce196184c09f8fa6000ec3dbf31bc76fb2d4503ac47ec6d4f30f3c7c" }, "downloads": -1, "filename": "django-admin-tools-0.5.0.tar.gz", "has_sig": false, "md5_digest": "b1df16f427fac59e719cd88c22d4eaf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 452720, "upload_time": "2014-08-11T16:01:22", "url": "https://files.pythonhosted.org/packages/20/59/feb54426bda61b7fa41d6c6393b8106071875a386edc315b87029441b663/django-admin-tools-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "132e62fa1d5a0d933c4c13324249381c", "sha256": "bd6b1882e329ce71525fa8c541c716af89d7647a8885fe8038f69e1493e5e5cd" }, "downloads": -1, "filename": "django-admin-tools-0.5.1.tar.gz", "has_sig": false, "md5_digest": "132e62fa1d5a0d933c4c13324249381c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 453051, "upload_time": "2014-08-11T16:01:44", "url": "https://files.pythonhosted.org/packages/f5/50/e90c11b1339c9214ecbd85456f028fb784630e4524f5aca140f9a982b3fc/django-admin-tools-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "a9737ab4830dc9aff6abb936123bd2f3", "sha256": "41f3cd50cfdf689c202070b40fa63027079548f481d01a75a6bb8ef73b600373" }, "downloads": -1, "filename": "django-admin-tools-0.5.2.tar.gz", "has_sig": false, "md5_digest": "a9737ab4830dc9aff6abb936123bd2f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 454758, "upload_time": "2014-08-11T16:08:36", "url": "https://files.pythonhosted.org/packages/65/e7/654d69f64e155f747ede20d14fa474fbce759b72f7461ccf2dcc93c26df4/django-admin-tools-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "5dd1be6ea0399643e126bb318a37b544", "sha256": "aa206aa1296bd5c1d24d93a71509503bde4feb06e8d52a4079c9b4f5dc141c4d" }, "downloads": -1, "filename": "django_admin_tools-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5dd1be6ea0399643e126bb318a37b544", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 294995, "upload_time": "2015-07-07T16:23:52", "url": "https://files.pythonhosted.org/packages/e3/aa/6637d095f8a7788e563246561e862ab50db64ae428769b72466e2f176fa4/django_admin_tools-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "637416a00393d2a669eb3b38f1aa6986", "sha256": "ff05cb435f07299ef275c28488d998b611e3ce96d004d72a6946f3af3582730e" }, "downloads": -1, "filename": "django-admin-tools-0.6.0.tar.gz", "has_sig": false, "md5_digest": "637416a00393d2a669eb3b38f1aa6986", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 451222, "upload_time": "2015-07-07T16:23:38", "url": "https://files.pythonhosted.org/packages/01/8a/6c6f18ebd3a7e3cb9fb4bfbe75ad91fb2c61f6dc720b1e15b7be0fcce9e7/django-admin-tools-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "f6de4c90d4f54cd211e48d0d040a65fd", "sha256": "99bb086b22d17f55a1c1f4181aac9285ffaba34eb0019677beeb0c94d1ec23bc" }, "downloads": -1, "filename": "django_admin_tools-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f6de4c90d4f54cd211e48d0d040a65fd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 288947, "upload_time": "2015-11-05T10:34:35", "url": "https://files.pythonhosted.org/packages/bf/fd/5fa822aef0e34de3e117abb18776481cebeec068d3448ea8f15b64c349ce/django_admin_tools-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9a6c2e3b6003e8c44165565720dfc5a", "sha256": "331bbb503e56340fe87397720709985e6697b1b5042d2b786d68907453b19fc2" }, "downloads": -1, "filename": "django-admin-tools-0.7.0.tar.gz", "has_sig": false, "md5_digest": "d9a6c2e3b6003e8c44165565720dfc5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 450339, "upload_time": "2015-11-05T10:34:01", "url": "https://files.pythonhosted.org/packages/e0/9e/130bfac9c121b5e2401f8e187c02d672486a1004e611f00677e82b3f82e3/django-admin-tools-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "abdeb30e1db1e91ec27afb683d8b1860", "sha256": "fe138a3021de360979b2cd46df6a771bcb4120892df080d89661c0ecca4cf8d1" }, "downloads": -1, "filename": "django_admin_tools-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "abdeb30e1db1e91ec27afb683d8b1860", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 289073, "upload_time": "2015-11-27T09:20:32", "url": "https://files.pythonhosted.org/packages/be/55/c980c03eef339c88e34e8c148f51ad3456a5f66f9e23c1e634c4f841dfe5/django_admin_tools-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a09d84b9fea4559faf9af102dcea0c6", "sha256": "d0d75d30e918d28cc5ded8f2935015259fe4ad966d0de7649a3cedfba7d9696b" }, "downloads": -1, "filename": "django-admin-tools-0.7.1.tar.gz", "has_sig": false, "md5_digest": "5a09d84b9fea4559faf9af102dcea0c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 450606, "upload_time": "2015-11-27T09:20:25", "url": "https://files.pythonhosted.org/packages/95/d4/8e35b639a2e2644202e3be1e92f07cb5cfa57cbf474f1ea5dc7f9a2b893f/django-admin-tools-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "2c52dbb224a0a9a2e8239d9b28ff3a0a", "sha256": "1aed07a7b65d254448bcec5529c4ff6511b1146fc8cc81765e635678c486b81d" }, "downloads": -1, "filename": "django_admin_tools-0.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c52dbb224a0a9a2e8239d9b28ff3a0a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 289446, "upload_time": "2016-01-14T10:06:54", "url": "https://files.pythonhosted.org/packages/ee/d7/9b4c6d34cdeb400478d87e6d3d6eeb78ba3a14068ee9a7b271c46be186d9/django_admin_tools-0.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c9353ef910b47850f09b3810b454f34", "sha256": "e22575108ce8c1b3e152acb95e006e3690d6023afc2bd68bb983e14cb7234d14" }, "downloads": -1, "filename": "django-admin-tools-0.7.2.tar.gz", "has_sig": false, "md5_digest": "0c9353ef910b47850f09b3810b454f34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 450889, "upload_time": "2016-01-14T10:06:41", "url": "https://files.pythonhosted.org/packages/60/ab/ac43590ccda1cfcd7a70efe7bc86fbc0addcf54ac3e8a628bd7b06d559a7/django-admin-tools-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "24338abf7049f10752368921bd103485", "sha256": "ed0655dd96bb636303e3b0f0e89824f8e190ac07640b55735d809be088852c64" }, "downloads": -1, "filename": "django_admin_tools-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24338abf7049f10752368921bd103485", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 289807, "upload_time": "2016-08-12T09:58:06", "url": "https://files.pythonhosted.org/packages/e2/94/cf972b646be959093dff5c694ae63f9f2d94f6d82a4d5be2cbcf9f8b57fc/django_admin_tools-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e274ae8b8d79bcc4722e17f3e4964fa6", "sha256": "d27347329426d0b283ce32cafc272a7119e793eadebe32f6222fcae8eee8b962" }, "downloads": -1, "filename": "django-admin-tools-0.8.0.tar.gz", "has_sig": false, "md5_digest": "e274ae8b8d79bcc4722e17f3e4964fa6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 451054, "upload_time": "2016-08-12T09:57:50", "url": "https://files.pythonhosted.org/packages/af/1c/2f81a943c7a32c813b0bfc2a0029ca36a0fdc2c3ed60f8fd7288aa859d8e/django-admin-tools-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "9a4f1cf248060f61d3c0200513280bf5", "sha256": "73841bdd31d2397d640819690a7f6f61490ef8f386476b78a8373df4941eea72" }, "downloads": -1, "filename": "django_admin_tools-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9a4f1cf248060f61d3c0200513280bf5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 291301, "upload_time": "2017-05-30T12:34:28", "url": "https://files.pythonhosted.org/packages/fd/f1/0f7f9dde757e1b079d684157525afef9adb43b356bb01df73157f6af0e10/django_admin_tools-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3d54bd4481bbad70ef4214b572297de", "sha256": "bf4d7e022d18a18067a4649e370c0794749bea4e84e5a3b611d4330d49aa5830" }, "downloads": -1, "filename": "django-admin-tools-0.8.1.tar.gz", "has_sig": false, "md5_digest": "d3d54bd4481bbad70ef4214b572297de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 453018, "upload_time": "2017-05-30T12:34:06", "url": "https://files.pythonhosted.org/packages/df/60/3fbb8bf889204ab60d7b87e1bb2d304d9b826eb12e5f6b416f9edf7872ef/django-admin-tools-0.8.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9a4f1cf248060f61d3c0200513280bf5", "sha256": "73841bdd31d2397d640819690a7f6f61490ef8f386476b78a8373df4941eea72" }, "downloads": -1, "filename": "django_admin_tools-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9a4f1cf248060f61d3c0200513280bf5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 291301, "upload_time": "2017-05-30T12:34:28", "url": "https://files.pythonhosted.org/packages/fd/f1/0f7f9dde757e1b079d684157525afef9adb43b356bb01df73157f6af0e10/django_admin_tools-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3d54bd4481bbad70ef4214b572297de", "sha256": "bf4d7e022d18a18067a4649e370c0794749bea4e84e5a3b611d4330d49aa5830" }, "downloads": -1, "filename": "django-admin-tools-0.8.1.tar.gz", "has_sig": false, "md5_digest": "d3d54bd4481bbad70ef4214b572297de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 453018, "upload_time": "2017-05-30T12:34:06", "url": "https://files.pythonhosted.org/packages/df/60/3fbb8bf889204ab60d7b87e1bb2d304d9b826eb12e5f6b416f9edf7872ef/django-admin-tools-0.8.1.tar.gz" } ] }