{ "info": { "author": "Artur Barseghyan", "author_email": "artur.barseghyan@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "=====================\ndjango-admin-timeline\n=====================\nA Facebook-like timeline app for Django admin. It's very similar to built-in\nfeature `Daily progress`, but then has a nicer templates and infinite scroll\nimplemented. Actions are broken up by day, then by action. Filtering\nby user (multiple select) and content type (multiple select) is implemented.\n\n.. image:: https://img.shields.io/pypi/v/django-admin-timeline.svg\n :target: https://pypi.python.org/pypi/django-admin-timeline\n :alt: PyPI Version\n\n.. image:: https://img.shields.io/travis/barseghyanartur/django-admin-timeline/master.svg\n :target: http://travis-ci.org/barseghyanartur/django-admin-timeline\n :alt: Build Status\n\n.. image:: https://img.shields.io/badge/license-GPL--2.0--only%20OR%20LGPL--2.1--or--later-blue.svg\n :target: https://github.com/barseghyanartur/django-admin-timeline/#License\n :alt: GPL-2.0-only OR LGPL-2.1-or-later\n\nPrerequisites\n=============\nFuture\n------\nStarting from ``django-admin-timeline`` 1.7:\n\n- Django 1.8, 1.9, 1.10, 1.11, 2.0, 2.1 and 2.2\n- Python 2.7, 3.5, 3.6 and 3.7\n\nPresent\n-------\nCurrent version of ``django-admin-timeline`` (1.6.x) has the following\nprerequisites:\n\n- Django 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 2.0\n- Python 2.7, 3.3, 3.4, 3.5, 3.6\n\nDropping support of Django 1.4, 1.5, 1.6 and 1.7 has been announced in\nversion 1.6. As of 1.6 everything is still backwards compatible with\nversions 1.4, 1.5, 1.6 and 1.7, but in future versions compatibility with\nthese versions will be wiped out.\n\nDropping support of Python 2.6 and 3.3 has been announced in version 1.6.\nAs of 1.6 everything is still backwards compatible with Python 2.6 and 3.3,\nbut in future versions compatibility with these versions will be wiped out.\n\nInstallation\n============\n(1) Install in your virtual environment\n\n Latest stable version from PyPI:\n\n .. code-block:: sh\n\n pip install django-admin-timeline\n\n Latest stable version from BitBucket:\n\n .. code-block:: sh\n\n pip install https://bitbucket.org/barseghyanartur/django-admin-timeline/get/stable.tar.gz\n\n Latest stable version from GitHub:\n\n .. code-block:: sh\n\n pip install https://github.com/barseghyanartur/django-admin-timeline/archive/stable.tar.gz\n\n(2) Add ``admin_timeline`` to your ``INSTALLED_APPS`` in the\n global ``settings.py``.\n\n .. code-block:: python\n\n INSTALLED_APPS = (\n # ...\n 'admin_timeline',\n # ...\n )\n\n(3) Collect the static files by running (see the Troubleshooting section in\n case of problems):\n\n .. code-block:: sh\n\n ./manage.py collectstatic\n\n(4) Override app settings in your global ``settings`` module (see the\n ``apps.admin_timeline.defaults`` for the list of settings). As for now,\n most important of those is ``NUMBER_OF_ENTRIES_PER_PAGE`` - number of\n entries displayed per page (for both non-AJAX and AJAX requests).\n\n(5) Add the following lines to the global ``urls`` module:\n\n .. code-block:: python\n\n # Admin timeline URLs. Should be placed BEFORE the Django admin URLs.\n url(r'^admin/timeline/', include('admin_timeline.urls')),\n url(r'^admin/', include(admin.site.urls)),\n\nDemo\n====\nLive demo\n---------\nSee the `live demo app\n`_ on Heroku.\n\nCredentials:\n\n- username: admin\n- password: test\n\nRun demo locally\n----------------\nIn order to be able to quickly evaluate the ``django-admin-timeline``, a demo\napp (with a quick installer) has been created (works on Ubuntu/Debian, may\nwork on other Linux systems as well, although not guaranteed). Follow the\ninstructions below for having the demo running within a minute.\n\nGrab and run the latest ``django_admin_timeline_example_app_installer.sh``:\n\n.. code-block:: sh\n\n wget -O - https://raw.github.com/barseghyanartur/django-admin-timeline/stable/examples/django_admin_timeline_example_app_installer.sh | bash\n\nOpen your browser and test the app.\n\n- URL: http://127.0.0.1:8001/admin/timeline/\n- Admin username: admin\n- Admin password: test\n\nIf quick installer doesn't work for you, see the manual steps on running the\n`example project\n`_.\n\nTroubleshooting\n===============\nIf somehow static files are not collected properly (missing\n``admin_timeline.js`` and ``admin_timeline.css`` files), install the latest\nstable version from source.\n\n.. code-block:: sh\n\n pip install https://github.com/barseghyanartur/django-admin-timeline/archive/stable.tar.gz\n\nUsage\n=====\nAfter following all installation steps, you should be able to access the\n``django-admin-timeline`` by:\n\n.. code-block:: text\n\n http://127.0.0.1:8000/admin/timeline/\n\nAn example application is available. See the `example directory\n`_.\n\nConfiguration and tweaks\n========================\nIf you have way to many log entries and fetching all content types and users\nisn't an option, set the ``ADMIN_TIMELINE_SIMPLE_FILTER_FORM`` to ``True``\nin your settings. It will then change your multiple choice widgets into\nplain char fields (comma separated ids are allowed).\n\nTesting\n=======\nProject is covered by test (functional- and browser-tests).\nTo test with all supported Python/Django versions type:\n\n.. code-block:: sh\n\n tox\n\nTo test against specific environment, type:\n\n.. code-block:: sh\n\n tox -e py36-django111\n\nTo test just your working environment type:\n\n.. code-block:: sh\n\n ./runtests.py\n\nIt's assumed that you have all the requirements installed. If not, first\ninstall the test requirements:\n\n.. code-block:: sh\n\n pip install -r examples/requirements/testing.txt\n\nBrowser tests\n-------------\nFor browser tests you may choose between Firefox, headless Firefox and\nPhantomJS. PhantomJS is faster, headless Firefox is fast as well, but\nnormal Firefox tests tell you more (as you see what exactly happens on the\nscreen). Both cases require some effort and both have disadvantages regarding\nthe installation (although once you have them installed they work perfect).\n\nLatest versions of Firefox are often not supported by Selenium. Current\nversion of the Selenium for Python (2.53.6) works fine with Firefox 47.\nThus, instead of using system Firefox you could better use a custom one.\n\nFor PhantomJS you need to have NodeJS installed.\n\nSet up Firefox 47\n~~~~~~~~~~~~~~~~~\n1. Download Firefox 47 from\n `this\n `__\n location and unzip it into ``/usr/lib/firefox47/``\n\n2. Specify the full path to your Firefox in ``FIREFOX_BIN_PATH``\n setting. Example:\n\n .. code-block:: python\n\n FIREFOX_BIN_PATH = '/usr/lib/firefox47/firefox'\n\n If you set to use system Firefox, remove or comment-out the\n ``FIREFOX_BIN_PATH`` setting.\n\nAfter that your Selenium tests would work.\n\nSet up headless Firefox\n~~~~~~~~~~~~~~~~~~~~~~~\n1. Install ``xvfb`` package which is used to start Firefox in headless mode.\n\n .. code-block:: sh\n\n sudo apt-get install xvfb\n\n2. Run the tests using headless Firefox.\n\n .. code-block:: sh\n\n ./scripts/runtests.sh\n\n Or run tox tests using headless Firefox.\n\n .. code-block:: sh\n\n ./scripts/tox.sh\n\nSetup PhantomJS\n~~~~~~~~~~~~~~~\nYou could also run tests in headless mode (faster). For that you will need\nPhantomJS.\n\n1. Install PhantomJS and dependencies.\n\n .. code-block:: sh\n\n curl -sL https://deb.nodesource.com/setup_6.x -o nodesource_setup.sh\n sudo bash nodesource_setup.sh\n sudo apt-get install nodejs\n sudo apt-get install build-essential libssl-dev\n sudo npm -g install phantomjs-prebuilt\n\n2. Specify the ``PHANTOM_JS_EXECUTABLE_PATH`` setting. Example:\n\n .. code-block:: python\n\n PHANTOM_JS_EXECUTABLE_PATH = \"\"\n\n If you want to use Firefox for testing, remove or comment-out the\n ``PHANTOM_JS_EXECUTABLE_PATH`` setting.\n\nLicense\n=======\nGPL-2.0-only OR LGPL-2.1-or-later\n\nSupport\n=======\nFor any issues contact me at the e-mail given in the `Author`_ section.\n\nAuthor\n======\nArtur Barseghyan \n\nScreenshots\n===================================\n\n.. figure:: https://github.com/barseghyanartur/django-admin-timeline/raw/master/docs/_static/admin_timeline.png\n :align: center\n :width: 900px\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/barseghyanartur/django-admin-timeline", "keywords": "django-admin-timeline", "license": "GPL-2.0-only OR LGPL-2.1-or-later", "maintainer": "", "maintainer_email": "", "name": "django-admin-timeline", "package_url": "https://pypi.org/project/django-admin-timeline/", "platform": "", "project_url": "https://pypi.org/project/django-admin-timeline/", "project_urls": { "Homepage": "https://github.com/barseghyanartur/django-admin-timeline" }, "release_url": "https://pypi.org/project/django-admin-timeline/1.7.2/", "requires_dist": null, "requires_python": "", "summary": "Facebook-like timeline for Django admin", "version": "1.7.2" }, "last_serial": 5297368, "releases": { "0.6": [ { "comment_text": "", "digests": { "md5": "92fe4467b32b76ce104ba8c5971fdad6", "sha256": "fa96fa526b6d6f3b6b167c4417c15a6f8d242d6c458c0e84aa4be660b3944169" }, "downloads": -1, "filename": "django-admin-timeline-0.6.tar.gz", "has_sig": false, "md5_digest": "92fe4467b32b76ce104ba8c5971fdad6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9173, "upload_time": "2013-06-22T13:33:02", "url": "https://files.pythonhosted.org/packages/4d/98/3bc4fb1c8dfd1fe50d34bd97480cd84341bb906cc356f31204acd413aad6/django-admin-timeline-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "a1dd397b29ecba1176bad89781d9ef33", "sha256": "289f7fa21de79e52038b8fcb3857f069aef2c2bffdfe08dc67ebad078148542a" }, "downloads": -1, "filename": "django-admin-timeline-0.7.tar.gz", "has_sig": false, "md5_digest": "a1dd397b29ecba1176bad89781d9ef33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43371, "upload_time": "2013-07-04T18:33:19", "url": "https://files.pythonhosted.org/packages/0b/5b/25c5dba31f185f17fdd977e6f2e3e72e9d8a2f820e600dba029d3c227723/django-admin-timeline-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "9cf5b0d24563bbdf3eac1569fc5bf2ad", "sha256": "2acfec6fdd2582f696ece409c0de5bdaba188c339615b3feb8792d55cb4cc51f" }, "downloads": -1, "filename": "django-admin-timeline-0.8.tar.gz", "has_sig": false, "md5_digest": "9cf5b0d24563bbdf3eac1569fc5bf2ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43319, "upload_time": "2013-07-04T22:04:11", "url": "https://files.pythonhosted.org/packages/f0/25/7f4d5556c5abc0a981eb2bc3ce6f6bf2784efea389e3f9d93e88de98ce4e/django-admin-timeline-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "95f78e142c51992f514c6e9243930c56", "sha256": "d485cee1e8c895daf86eb94affa1a5b8f0b017da2a2ea80480b7c438373d8eb0" }, "downloads": -1, "filename": "django-admin-timeline-0.9.tar.gz", "has_sig": false, "md5_digest": "95f78e142c51992f514c6e9243930c56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43545, "upload_time": "2013-08-01T19:42:47", "url": "https://files.pythonhosted.org/packages/89/f9/fde20117e9b35ec848e1b5b75fc71d98e361f34010f62c281c1d2d00d4aa/django-admin-timeline-0.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "7a301277977d778f3f0b9ae34a40c6d3", "sha256": "ea287ff3f169fa0f64c4c10ba30827c2eb37739e7ed28acf8d7d014b703aada3" }, "downloads": -1, "filename": "django-admin-timeline-1.0.tar.gz", "has_sig": false, "md5_digest": "7a301277977d778f3f0b9ae34a40c6d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43170, "upload_time": "2013-09-09T18:02:06", "url": "https://files.pythonhosted.org/packages/6e/55/0272ed2256d76d571954494b13a698ccaa1549c578ec5c81321b74472992/django-admin-timeline-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "b2e92d6e914aff3165c4f2a7d84b4f83", "sha256": "2aefdbbf5ae8866e6211fbbd18d21e339ee5d13e064a298341b2c60d7e54f386" }, "downloads": -1, "filename": "django-admin-timeline-1.1.tar.gz", "has_sig": false, "md5_digest": "b2e92d6e914aff3165c4f2a7d84b4f83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48398, "upload_time": "2013-10-07T22:05:39", "url": "https://files.pythonhosted.org/packages/b6/cf/5f49aa606a4e2df6d26199403b2e04f0802064313373f77a509dba334e1b/django-admin-timeline-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "fc07706fe51911c02e19c28a39535103", "sha256": "0fe1aacb85f10159147d9d5537426373b27d185040f054888b7c30e34356e15c" }, "downloads": -1, "filename": "django-admin-timeline-1.2.tar.gz", "has_sig": false, "md5_digest": "fc07706fe51911c02e19c28a39535103", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48211, "upload_time": "2013-10-09T16:43:47", "url": "https://files.pythonhosted.org/packages/82/b4/a38ceb4f890071a3ddd20d105fee0683ddd62147a6d3d461d79e1a6a7eda/django-admin-timeline-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "e639629103dba06cbc2f6d4d7f72a693", "sha256": "b8499d38dd4c21edfef7050ce0aa8bed955e7bd98036cba07ef6488c80334fca" }, "downloads": -1, "filename": "django-admin-timeline-1.3.tar.gz", "has_sig": false, "md5_digest": "e639629103dba06cbc2f6d4d7f72a693", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48895, "upload_time": "2013-11-22T21:02:59", "url": "https://files.pythonhosted.org/packages/d4/15/249b63714987902fe3da5ccfb5404b19fdddc4b611af7a5c12ea0b3d0d8b/django-admin-timeline-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "0372eb58f71d8aafd822f1614b86c8aa", "sha256": "45035c0a0ec905059c08fc7f7ccde076ab9e4225dba37e9912bbae296db6e3da" }, "downloads": -1, "filename": "django-admin-timeline-1.4.tar.gz", "has_sig": false, "md5_digest": "0372eb58f71d8aafd822f1614b86c8aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50200, "upload_time": "2014-10-31T00:41:34", "url": "https://files.pythonhosted.org/packages/75/2e/dcca036cb6a4f1070c6f9d72cdb78016b135e800194517361f29217d8bc8/django-admin-timeline-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "74789c53b2d8a8b64d6c182d1a3527bd", "sha256": "f084ed53f5da83cdea05fac0fc5e6e4e831c43a730dfc7b95f657d6cb7f98788" }, "downloads": -1, "filename": "django_admin_timeline-1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "74789c53b2d8a8b64d6c182d1a3527bd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 58723, "upload_time": "2015-03-15T00:51:45", "url": "https://files.pythonhosted.org/packages/fc/9e/872ead3a3c1f5bb487e647b95ec2caa4c693faee828971698c6ac83d06e8/django_admin_timeline-1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a4cafeac58246b52069b976fab78978", "sha256": "5e9cbe25a20a7d0295b623d530fe4d85926b7780deeb678223d1f6aa7fe190ae" }, "downloads": -1, "filename": "django-admin-timeline-1.5.tar.gz", "has_sig": false, "md5_digest": "6a4cafeac58246b52069b976fab78978", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50800, "upload_time": "2015-03-15T00:51:42", "url": "https://files.pythonhosted.org/packages/3d/68/d7c053f5f396b40c39a022782267fa1beecc54ecb6d1bb25a9772213ef11/django-admin-timeline-1.5.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "fd131e214e9eab708fd316bceaedfa48", "sha256": "6f737aab0bcfb07bc1c38c537d1f8c5d5fca4dc6719eacf6d957e06eb9d84d2f" }, "downloads": -1, "filename": "django_admin_timeline-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd131e214e9eab708fd316bceaedfa48", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 122626, "upload_time": "2015-03-15T23:39:31", "url": "https://files.pythonhosted.org/packages/79/65/2487533c32486f7fe160df07b93a544e6164959c193b277ac16e390461b1/django_admin_timeline-1.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a450cdc0951f5738809e1180c1af1d48", "sha256": "5f06f9dfd157e05a9a545086c392777313a2c72f07ce77f654d5051cc5be1cba" }, "downloads": -1, "filename": "django-admin-timeline-1.5.1.tar.gz", "has_sig": false, "md5_digest": "a450cdc0951f5738809e1180c1af1d48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82729, "upload_time": "2015-03-15T23:39:26", "url": "https://files.pythonhosted.org/packages/b4/4a/f16b13327d08365df28f8664ffd94ccae1720f5edaa95900dd65dc443394/django-admin-timeline-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "057e61ff2feff67692a8d373a0f9833e", "sha256": "47044e2475eff16f215744082252f56e83359753c830e409aa7e5e8294a538e9" }, "downloads": -1, "filename": "django_admin_timeline-1.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "057e61ff2feff67692a8d373a0f9833e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 89572, "upload_time": "2015-09-08T07:24:43", "url": "https://files.pythonhosted.org/packages/d8/7c/8502fa49b0a46a0c1f5a64bc4e4fcd4b7f86b444df79b70bdd0d15b0e09c/django_admin_timeline-1.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d2d471fbdd266c1bce5942c36a74523d", "sha256": "15bde7eb60c18a4c1517c9b9890e2b5de32ada06842c506661fe57a2e88238a3" }, "downloads": -1, "filename": "django-admin-timeline-1.5.2.tar.gz", "has_sig": false, "md5_digest": "d2d471fbdd266c1bce5942c36a74523d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84024, "upload_time": "2015-09-08T07:24:37", "url": "https://files.pythonhosted.org/packages/21/cf/791609cb8529576e84dd2e0338b1f4492df48eaaee3a21a238ee12451be5/django-admin-timeline-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "b6cf20ffcbb51146ea669aaf86e2402c", "sha256": "6a598c163ea245b4ed404373654147d6506e09cf087248c27ef0c894a69db9d3" }, "downloads": -1, "filename": "django_admin_timeline-1.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b6cf20ffcbb51146ea669aaf86e2402c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 89575, "upload_time": "2015-09-08T20:48:32", "url": "https://files.pythonhosted.org/packages/fb/02/2fe59f0138a8d2fb9ac5e712965508a72f350d91db990d076d1fc67375fb/django_admin_timeline-1.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23cab228470bfa74e6a82b3778234684", "sha256": "772c0e75776f8891e0e4810b938df27f50068bda1e69a840e1f1cd855772238a" }, "downloads": -1, "filename": "django-admin-timeline-1.5.3.tar.gz", "has_sig": false, "md5_digest": "23cab228470bfa74e6a82b3778234684", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82757, "upload_time": "2015-09-08T20:48:28", "url": "https://files.pythonhosted.org/packages/8c/b0/6bbe9d0ac1be9451ee777f847ffd911ab11d966c626c4e78f16d42c68729/django-admin-timeline-1.5.3.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "cd410a0be8bd43543461149f79d69b2f", "sha256": "ae71d97c77721f4c221b370637ca0a2efc09ef6befe7dd000080a6526a28144e" }, "downloads": -1, "filename": "django_admin_timeline-1.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd410a0be8bd43543461149f79d69b2f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 89856, "upload_time": "2015-10-02T01:34:32", "url": "https://files.pythonhosted.org/packages/30/33/8216a9440b9890900c90b4d3eca37155b65e717d6182aa8001f75e7111f5/django_admin_timeline-1.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "52bc13a3e9548b714d266764f9b58c07", "sha256": "379354b00918d55b837f49f91fdb4286a3af1b5abcb7de37e327dffed5497ca3" }, "downloads": -1, "filename": "django-admin-timeline-1.5.4.tar.gz", "has_sig": false, "md5_digest": "52bc13a3e9548b714d266764f9b58c07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83004, "upload_time": "2015-10-02T01:34:27", "url": "https://files.pythonhosted.org/packages/d6/17/9b3346646aaced3746e2c2afdc0842b1d197e4ae7cb413a25b73612b6342/django-admin-timeline-1.5.4.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "5de7800a881d8953e2127a99413f9cd9", "sha256": "8dabc44bc5ad31f26206cabcaff5cbdbece09c24995d04e318505f9ada7fee45" }, "downloads": -1, "filename": "django_admin_timeline-1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5de7800a881d8953e2127a99413f9cd9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 92036, "upload_time": "2016-12-13T03:05:39", "url": "https://files.pythonhosted.org/packages/91/c7/3a0ecd3104e828b981b071bec0aae73cfe602ca2eaf89b32604c3c9bc4e6/django_admin_timeline-1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8f134631ea481b690215f7741912ac11", "sha256": "6e7cb86ea67a11c941e529722392a4fed4e9ab0ae6d154eb594423d0bc4caa44" }, "downloads": -1, "filename": "django-admin-timeline-1.6.tar.gz", "has_sig": false, "md5_digest": "8f134631ea481b690215f7741912ac11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86652, "upload_time": "2016-12-13T03:05:36", "url": "https://files.pythonhosted.org/packages/1e/2b/2c831676800fc666b001066c824e7936be5871e06141745bdc5fa721bcc1/django-admin-timeline-1.6.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "88b11d8f4e353d51c9a7fc3643b764d9", "sha256": "fafa59c50da0c9168a4515c28cf07e345cb3c598c4e6e745504a913673e2d27e" }, "downloads": -1, "filename": "django_admin_timeline-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "88b11d8f4e353d51c9a7fc3643b764d9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 94238, "upload_time": "2017-04-07T22:00:18", "url": "https://files.pythonhosted.org/packages/b6/7b/62d67530367ed8a6ae1a96a95917af7803d2976f11c49f17750c148e71e0/django_admin_timeline-1.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3cc80ee44646d03b4b2f11de9c2d4b3b", "sha256": "edd07a3f031dc1466609990eaddfdb36f2a600b5d9eda19bb6b218c881a3f897" }, "downloads": -1, "filename": "django-admin-timeline-1.6.1.tar.gz", "has_sig": false, "md5_digest": "3cc80ee44646d03b4b2f11de9c2d4b3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89007, "upload_time": "2017-04-07T22:00:16", "url": "https://files.pythonhosted.org/packages/66/01/a1ce4e2b42ee59be91edd5e1be33ffb8f86a35ae46323779b001ce8d47d0/django-admin-timeline-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "319a0770d321b6345d09a365a17c47e6", "sha256": "83b3f8b3d049eadf93cec62b5a5bbb3c38c9877247109095f9f053edc431b284" }, "downloads": -1, "filename": "django_admin_timeline-1.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "319a0770d321b6345d09a365a17c47e6", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 94251, "upload_time": "2018-01-08T11:15:19", "url": "https://files.pythonhosted.org/packages/88/38/35e6ad790f0976e927d603ddd7c8f64feb29f2b133c946be89b02bdcdb38/django_admin_timeline-1.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "214fdeab0ec47def9cd57006700972e7", "sha256": "9cbaf828d84e641a366098c865dfe27ab5fcedb324ba008225eeefbd8d2f3802" }, "downloads": -1, "filename": "django-admin-timeline-1.6.2.tar.gz", "has_sig": false, "md5_digest": "214fdeab0ec47def9cd57006700972e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88718, "upload_time": "2018-01-08T11:15:17", "url": "https://files.pythonhosted.org/packages/42/04/51beae074af06041c1b0abc6cd72eac91d5a9a089e53ea4dfeb8c3a40b29/django-admin-timeline-1.6.2.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "0fa033931879ed90df2ef94f7c79109c", "sha256": "a65cf873dba9aa596396b5422b9a2bfd1d937f3fba0ca6e99fdbb3e7a494178f" }, "downloads": -1, "filename": "django_admin_timeline-1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0fa033931879ed90df2ef94f7c79109c", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 107198, "upload_time": "2019-05-20T14:46:50", "url": "https://files.pythonhosted.org/packages/65/bf/68f5b5606dc058b9ae4f71f2a499054cf90a4ccde4c08087518edfc11066/django_admin_timeline-1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "44e60a6df97c73936b49b32055b6887a", "sha256": "e9681482091b44fd6ca30d8322053419d65828a789ad50f48c81138f0f7a389a" }, "downloads": -1, "filename": "django-admin-timeline-1.7.tar.gz", "has_sig": false, "md5_digest": "44e60a6df97c73936b49b32055b6887a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89228, "upload_time": "2019-05-20T14:46:47", "url": "https://files.pythonhosted.org/packages/17/bd/e4b9cfe284635679c423623bd417edabd587b61626ad3f11d5504d57c3fa/django-admin-timeline-1.7.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "84c5e3f102a3a104c44fc75baacf498a", "sha256": "5faf0dc17787ecad4956710018e278035d13074ee00e0d542923ff306dfbac39" }, "downloads": -1, "filename": "django_admin_timeline-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "84c5e3f102a3a104c44fc75baacf498a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 107710, "upload_time": "2019-05-21T09:38:01", "url": "https://files.pythonhosted.org/packages/c3/7b/621e280ac2ac78ed180c9a1f1af5493a7e2cf911c7ee8f6141ef5ed8f82d/django_admin_timeline-1.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c23930e03a1a252e7f0fe05716866a8", "sha256": "05b421304df16e3acc5bc94543fe1c301e6c510de22115b0581b23c490587e0d" }, "downloads": -1, "filename": "django-admin-timeline-1.7.1.tar.gz", "has_sig": false, "md5_digest": "1c23930e03a1a252e7f0fe05716866a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89974, "upload_time": "2019-05-21T09:37:58", "url": "https://files.pythonhosted.org/packages/21/42/1407ea29d9bd8eef3488a2b8127138a169cb5e1a9ed943272e8ac5c4dd13/django-admin-timeline-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "b4296207e4047ed6a1164e474e7fd861", "sha256": "f4a9e1a5fba48e98d68f658f7a840cf86f356dc784e53a0aba5f0ff9eebf3c74" }, "downloads": -1, "filename": "django_admin_timeline-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b4296207e4047ed6a1164e474e7fd861", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 107727, "upload_time": "2019-05-21T11:19:48", "url": "https://files.pythonhosted.org/packages/7a/a2/1297b06bd60e793dba7bd8b0b098e45d44e93fc6ca51b12486e6e4df5078/django_admin_timeline-1.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8251b78cc8179508daee1dcf0aaa2689", "sha256": "b8acd2adc49fd9cccf1aaa4c1e0cd5656b05fcc19c28a932c5e1973abd1c21a1" }, "downloads": -1, "filename": "django-admin-timeline-1.7.2.tar.gz", "has_sig": false, "md5_digest": "8251b78cc8179508daee1dcf0aaa2689", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89998, "upload_time": "2019-05-21T11:19:46", "url": "https://files.pythonhosted.org/packages/a3/a1/75ead4813d1b656d55ed401bd8f1cd40ba5aff6b62208862f9fd539500cc/django-admin-timeline-1.7.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b4296207e4047ed6a1164e474e7fd861", "sha256": "f4a9e1a5fba48e98d68f658f7a840cf86f356dc784e53a0aba5f0ff9eebf3c74" }, "downloads": -1, "filename": "django_admin_timeline-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b4296207e4047ed6a1164e474e7fd861", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 107727, "upload_time": "2019-05-21T11:19:48", "url": "https://files.pythonhosted.org/packages/7a/a2/1297b06bd60e793dba7bd8b0b098e45d44e93fc6ca51b12486e6e4df5078/django_admin_timeline-1.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8251b78cc8179508daee1dcf0aaa2689", "sha256": "b8acd2adc49fd9cccf1aaa4c1e0cd5656b05fcc19c28a932c5e1973abd1c21a1" }, "downloads": -1, "filename": "django-admin-timeline-1.7.2.tar.gz", "has_sig": false, "md5_digest": "8251b78cc8179508daee1dcf0aaa2689", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89998, "upload_time": "2019-05-21T11:19:46", "url": "https://files.pythonhosted.org/packages/a3/a1/75ead4813d1b656d55ed401bd8f1cd40ba5aff6b62208862f9fd539500cc/django-admin-timeline-1.7.2.tar.gz" } ] }