{ "info": { "author": "Gregor M\u00fcllegger", "author_email": "gregor@muellegger.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Framework :: Django :: 2.2", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "================\ndjango-sortedm2m\n================\n\n.. image:: https://jazzband.co/static/img/badge.svg\n :target: https://jazzband.co/\n :alt: Jazzband\n\n.. image:: https://img.shields.io/pypi/v/django-sortedm2m.svg\n :target: https://pypi.python.org/pypi/django-sortedm2m\n :alt: PyPI Release\n\n.. image:: https://travis-ci.org/jazzband/django-sortedm2m.svg?branch=master\n :target: https://travis-ci.org/jazzband/django-sortedm2m\n :alt: Build Status\n\n.. image:: https://codecov.io/gh/jazzband/django-sortedm2m/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/jazzband/django-sortedm2m\n :alt: Code coverage\n\n``sortedm2m`` is a drop-in replacement for django's own ``ManyToManyField``.\nThe provided ``SortedManyToManyField`` behaves like the original one but\nremembers the order of added relations.\n\nUse Cases\n=========\n\nImagine that you have a gallery model and a photo model. Usually you want a\nrelation between these models so you can add multiple photos to one gallery\nbut also want to be able to have the same photo on many galleries.\n\nThis is where you usually can use many to many relation. The downside is that\ndjango's default implementation doesn't provide a way to order the photos in\nthe gallery. So you only have a random ordering which is not suitable in most\ncases.\n\nYou can work around this limitation by using the ``SortedManyToManyField``\nprovided by this package as drop in replacement for django's\n``ManyToManyField``.\n\nRequirements\n============\n\n**django-sortedm2m** runs on Python 2.7, 3.5+ and Django 1.11 to 2.2.\n\nUsage\n=====\n\nUse ``SortedManyToManyField`` like ``ManyToManyField`` in your models::\n\n from django.db import models\n from sortedm2m.fields import SortedManyToManyField\n\n class Photo(models.Model):\n name = models.CharField(max_length=50)\n image = models.ImageField(upload_to='...')\n\n class Gallery(models.Model):\n name = models.CharField(max_length=50)\n photos = SortedManyToManyField(Photo)\n\nIf you use the relation in your code like the following, it will remember the\norder in which you have added photos to the gallery. ::\n\n gallery = Gallery.objects.create(name='Photos ordered by name')\n for photo in Photo.objects.order_by('name'):\n gallery.photos.add(photo)\n\n``SortedManyToManyField``\n-------------------------\n\nYou can use the following arguments to modify the default behavior:\n\n``sorted``\n~~~~~~~~~~\n\n**Default:** ``True``\n\nYou can set the ``sorted`` to ``False`` which will force the\n``SortedManyToManyField`` in behaving like Django's original\n``ManyToManyField``. No ordering will be performed on relation nor will the\nintermediate table have a database field for storing ordering information.\n\n``sort_value_field_name``\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**Default:** ``'sort_value'``\n\nSpecifies how the field is called in the intermediate database table by which\nthe relationship is ordered. You can change its name if you have a legacy\ndatabase that you need to integrate into your application.\n\n``base_class``\n~~~~~~~~~~~~~~\n\n**Default:** ``None``\n\nYou can set the ``base_class``, which is the base class of the through model of\nthe sortedm2m relationship between models to an abstract base class containing\na ``__str__`` method to improve the string representations of sortedm2m\nrelationships.\n\n.. note::\n\n You also could use it to add additional fields to the through model. But\n please beware: These fields will not be created or modified by an\n automatically created migration. You will need to take care of migrations\n yourself. In most cases when you want to add another field, consider\n *not* using sortedm2m but use a ordinary Django ManyToManyField and\n specify `your own through model`_.\n\n.. _your own through model: https://docs.djangoproject.com/en/1.11/ref/models/fields/#django.db.models.ManyToManyField.through\n\nMigrating a ``ManyToManyField`` to be a ``SortedManyToManyField``\n=================================================================\n\nIf you are using Django's migration framework and want to change a\n``ManyToManyField`` to be a ``SortedManyToManyField`` (or the other way\naround), you will find that a migration created by Django's ``makemigrations``\nwill not work as expected.\n\nIn order to migrate a ``ManyToManyField`` to a ``SortedManyToManyField``, you\nchange the field in your models to be a ``SortedManyToManyField`` as\nappropriate and create a new migration with ``manage.py makemigrations``.\nBefore applying it, edit the migration file and change in the ``operations``\nlist ``migrations.AlterField`` to ``AlterSortedManyToManyField`` (import it\nfrom ``sortedm2m.operations``). This operation will take care of changing the\nintermediate tables, add the ordering field and fill in default values.\n\nAdmin\n=====\n\n``SortedManyToManyField`` provides a custom widget which can be used to sort\nthe selected items. It renders a list of checkboxes that can be sorted by\ndrag'n'drop.\n\nTo use the widget in the admin you need to add ``sortedm2m`` to your\nINSTALLED_APPS settings, like::\n\n INSTALLED_APPS = (\n 'django.contrib.auth',\n 'django.contrib.contenttypes',\n 'django.contrib.sessions',\n 'django.contrib.sites',\n 'django.contrib.messages',\n 'django.contrib.staticfiles',\n 'django.contrib.admin',\n\n 'sortedm2m',\n\n '...',\n )\n\nOtherwise it will not find the css and js files needed to sort by drag'n'drop.\n\nFinally, make sure *not* to have the model listed in any ``filter_horizontal``\nor ``filter_vertical`` tuples inside of your ``ModelAdmin`` definitions.\n\nIf you did it right, you'll wind up with something like this:\n\n.. image:: http://i.imgur.com/HjIW7MI.jpg\n\nIt's also possible to use the ``SortedManyToManyField`` with admin's\n``raw_id_fields`` option in the ``ModelAdmin`` definition. Add the name of the\n``SortedManyToManyField`` to this list to get a simple text input field. The\norder in which the ids are entered into the input box is used to sort the\nitems of the sorted m2m relation.\n\nExample::\n\n from django.contrib import admin\n\n class GalleryAdmin(admin.ModelAdmin):\n raw_id_fields = ('photos',)\n\nContribute\n==========\nThis is a `Jazzband `_ project. By contributing you agree to abide by the\n`Contributor Code of Conduct `_ and follow the\n`guidelines `_.\n\nYou can find the latest development version on Github_. Get there and fork it, file bugs or send well wishes.\n\n.. _github: http://github.com/jazzband/django-sortedm2m\n\nRunning the tests\n-----------------\n\nI recommend to use ``tox`` to run the tests for all relevant python versions\nall at once. Therefore install ``tox`` with ``pip install tox``, then type in\nthe root directory of the ``django-sortedm2m`` checkout::\n\n tox\n\nHowever using tox will not include the tests that run against a PostgreSQL\ndatabase. The project therefore contains a ``Vagrantfile`` that uses vagrant_\nto setup a virtual machine including a working PostgreSQL installation. To\nrun the postgres tests, please `install vagrant`_ and then run::\n\n make test-postgres\n\nThis will bring up and provision the virtual machine and runs the testsuite\nagainst a PostgreSQL database.\n\n.. _vagrant: http://www.vagrantup.com/\n.. _install vagrant: http://www.vagrantup.com/downloads\n\n\nChangelog\n=========\n2.0.1 (in development)\n----------------------\nTBD\n\n2.0.0\n-----\n* `#135`_: Updated README with Jazzband details, and added CONTRIBUTING.md\n* `#136`_: Dropped support for Python 2.6 and 3.3, and Django < 1.11\n* `#130`_: Added support for Python 3.7 and Django 2.0 to 2.2\n* `#130`_: Add support of custom through models (only for Django >= 2.2)\n* `#138`_: Added coverage reporting\n\n.. _#130: https://github.com/jazzband/django-sortedm2m/issues/130\n.. _#135: https://github.com/jazzband/django-sortedm2m/pull/135\n.. _#136: https://github.com/jazzband/django-sortedm2m/pull/136\n.. _#138: https://github.com/jazzband/django-sortedm2m/pull/138\n\n1.5.0\n-----\n\n* `#101`_: Add support for a custom base class for the many to many intermediate\n class. See the README for documentation. Thank you Rohith Asrk for the patch.\n* `#87`_: Fix ``AlterSortedManyToManyField`` operation to support custom set\n ``_sort_field_name``.\n\n.. _#101: https://github.com/jazzband/django-sortedm2m/pull/101\n.. _#87: https://github.com/jazzband/django-sortedm2m/issues/87\n\n1.4.0\n-----\n\n* `#104`_: Add compatibility for Django 1.10 and 1.11!\n Thank you Frankie Dintino for the patch.\n* `#94`_: Add french translation files. Mainly for strings in the admin.\n Thanks to ppython for the patch.\n* `#93`_: Prevent users from accidentally importing and using\n ``ManyToManyField`` instead of ``SortedManyToManyField`` from ``sortedm2m``.\n Thanks Dayne May for the patch.\n\n.. _#104: https://github.com/jazzband/django-sortedm2m/pull/104\n.. _#94: https://github.com/jazzband/django-sortedm2m/pull/94\n.. _#93: https://github.com/jazzband/django-sortedm2m/pull/93\n\n1.3.3\n-----\n\n* `#91`_ & `#92`_: Fix admin widget, when used with Django 1.10. The add a new\n item opup was not closing. Thanks to Tipuch for the patch.\n\n.. _#91: https://github.com/jazzband/django-sortedm2m/issues/91\n.. _#92: https://github.com/jazzband/django-sortedm2m/pull/92\n\n1.3.2\n-----\n\n* `#80`_ & `#83`_: Fix ``SortedMultipleChoiceField.clean`` if the validated\n value is ``None``. Thanks to Alex Mannhold for the patch.\n\n.. _#80: https://github.com/jazzband/django-sortedm2m/issues/80\n.. _#83: https://github.com/jazzband/django-sortedm2m/pull/83\n\n1.3.1\n-----\n\n* `#57`_ & `#81`_: Fix add related object popup error prevents operation when\n no related objects already exist. Thanks to Vadim Sikora for the fix.\n\n.. _#57: https://github.com/jazzband/django-sortedm2m/issue/57\n.. _#81: https://github.com/jazzband/django-sortedm2m/pull/81\n\n1.3.0\n-----\n\n* `#79`_: Use `.sortedm2m-item` selector in the widget's JavaScript code to\n target the list items. This was previously `ul.sortedm2m li`. This improves\n compatibility other markup that does not want to use `ul`/`li` tags. Thanks\n to Michal Dabski for the patch.\n\n **Note:** If you use custom markup with the JavaScript code, you need to make\n sure that the items now have the `sortedm2m-item` class name.\n\n* `#76`_: Add support for to_field_name to SortedMultipleChoiceField. Thanks\n to Conrad Kramer for the patch.\n\n.. _#76: https://github.com/jazzband/django-sortedm2m/pull/76\n.. _#79: https://github.com/jazzband/django-sortedm2m/pull/79\n\n1.2.2\n-----\n\n* `#75`_: Fix \"add another\" admin popup. It didn't refresh the list of items in Django\n 1.8+. Thanks to Vadim Sikora for the patch.\n\n.. _#75: https://github.com/jazzband/django-sortedm2m/pull/75\n\n1.2.1\n-----\n\n* *skipped*\n\n1.2.0\n-----\n\n* Dropping Python 3.2 support. It has reached end of life in February 2016.\n\n1.1.2\n-----\n\n* `#71`_: Don't break collectstatic for some cases. Therefore we removed the\n STATIC_URL prefix from the form media definition in\n ``SortedCheckboxSelectMultiple``. Thanks to Kirill Ermolov for the\n patch.\n\n.. _#71: https://github.com/jazzband/django-sortedm2m/issues/71\n\n1.1.1\n-----\n\n* `#70`_: CSS fix for Django 1.9 new admin design. Thanks to Maarten Draijer\n for the patch.\n\n.. _#70: https://github.com/jazzband/django-sortedm2m/pull/70\n\n1.1.0\n-----\n\n* `#59`_, `#65`_, `#68`_: Django 1.9 support. Thanks to Scott Kyle and Jasper Maes for\n patches.\n* `#67`_: Support for disabling migrations for some models, that can be\n decided by Django's DB router (with the ``allow_migrate_model`` method).\n Thanks to @hstanev for the patch.\n\n.. _#59: https://github.com/jazzband/django-sortedm2m/pull/59\n.. _#65: https://github.com/jazzband/django-sortedm2m/pull/65\n.. _#67: https://github.com/jazzband/django-sortedm2m/pull/67\n.. _#68: https://github.com/jazzband/django-sortedm2m/pull/68\n\n1.0.2\n-----\n\n* `#56`_: Fix bug where order is wrong after adding objects. That had to do\n with using the ``count`` of the m2m objects for the next ``sort_value``\n value. We now use the corret ``Max`` aggregation to make sure that newly\n added objects will be in order. Thanks to Scott Kyle for the report and\n patch.\n\n.. _#56: https://github.com/jazzband/django-sortedm2m/pull/56\n\n1.0.1\n-----\n\n* Performance fix for sorted m2m admin widget. See `#54`_ for details. Thanks\n to Jonathan Liuti for fixing this.\n\n.. _#54: https://github.com/jazzband/django-sortedm2m/pull/54\n\n1.0.0\n-----\n\n* Hooray, we officially declare **django-sortedm2m** to be stable and\n promise to be backwards compatible to new releases (we already doing good\n since since the beginning in that regard).\n* Django 1.8 support for ``AlterSortedManyToManyField`` operation. Thanks to\n Nicolas Tr\u00e9segnie for starting the implementation.\n\n0.10.0\n------\n\n* The creation of the sortedm2m intermediate model and database table is now\n fully done inside of the ``SortedManyToManyField`` class. That makes it much\n easier to modify the creation of this when creating a custom subclass of this\n field. See `#49`_ for an example usecase.\n* Adding support for the custom field arguments like ``sorted`` and\n ``sort_value_field_name`` in Django 1.7 migrations. Thanks to Christian\n Kohlstedde for the patch.\n\n.. _#49: https://github.com/jazzband/django-sortedm2m/issues/49\n\n0.9.5\n-----\n\n* Fixing ``setup.py`` when run on a system that does not use UTF-8 as default\n encoding. See `#48`_ for details. Thanks to Richard Mitchell for the patch.\n\n.. _#48: https://github.com/jazzband/django-sortedm2m/pull/48\n\n0.9.4\n-----\n\n* Fix: ``SortedMultipleChoiceField`` did not properly report changes of the\n data to ``Form.changed_data``. Thanks to @smcoll for the patch.\n\n0.9.3\n-----\n\n* Fix: ``AlterSortedManyToManyField`` operation failed for postgres databases.\n* Testing against MySQL databases.\n\n0.9.2\n-----\n\n* Fix: ``AlterSortedManyToManyField`` operation failed for many to many fields\n which already contained some data.\n\n0.9.1\n-----\n\n* Fix: When using the sortable admin widget, deselecting an item in the list\n had not effect. Thank you to madEng84 for the report and patch!\n\n0.9.0\n-----\n\n* Adding ``AlterSortedManyToManyField`` migration operation that allows you to\n migrate from ``ManyToManyField`` to ``SortedManyToManyField`` and vice\n versa. Thanks to Joaqu\u00edn P\u00e9rez for the patch!\n* Fix: Supporting migrations in Django 1.7.4.\n* Fix: The admin widget is not broken anymore for dynamically added inline\n forms. Thanks to Rub\u00e9n D\u00edaz for the patch!\n\n0.8.1\n-----\n\n* Adding support for Django 1.7 migrations. Thanks to Patryk Hes and Richard\n Barran for their reports.\n* Adding czech translations. Thanks to @cuchac for the pull request.\n\n0.8.0\n-----\n\n* Adding support for Django 1.7 and dropping support for Django 1.4.\n\n0.7.0\n-----\n\n* Adding support for ``prefetch_related()``. Thanks to Marcin Ossowski for\n the idea and patch.\n\n0.6.1\n-----\n\n* Correct escaping of *for* attribute in label for the sortedm2m widget. Thanks\n to Mystic-Mirage for the report and fix.\n\n0.6.0 \n-----\n\n* Python 3 support!\n* Better widget. Thanks to Mike Knoop for the initial patch.\n\n0.5.0\n-----\n\n* Django 1.5 support. Thanks to Antti Kaihola for the patches.\n* Dropping Django 1.3 support. Please use django-sortedm2m<0.5 if you need to\n use Django 1.3.\n* Adding support for a ``sort_value_field_name`` argument in\n ``SortedManyToManyField``. Thanks to Trey Hunner for the idea.\n\n0.4.0\n-----\n\n* Django 1.4 support. Thanks to Flavio Curella for the patch.\n* south support is only enabled if south is actually in your INSTALLED_APPS\n setting. Thanks to tcmb for the report and Florian Ilgenfritz for the patch.\n\n0.3.3\n-----\n\n* South support (via monkeypatching, but anyway... it's there!). Thanks to\n Chris Church for the patch. South migrations won't pick up a changed\n ``sorted`` argument though.\n\n0.3.2\n-----\n\n* Use already included jQuery version in global scope and don't override with\n django's version. Thank you to Hendrik van der Linde for reporting this\n issue.\n\n0.3.1\n-----\n\n* Fixed packaging error.\n\n0.3.0\n-----\n\n* Heavy internal refactorings. These were necessary to solve a problem with\n ``SortedManyToManyField`` and a reference to ``'self'``.\n\n0.2.5\n-----\n\n* Forgot to exclude debug print/console.log statements from code. Sorry.\n\n0.2.4\n-----\n\n* Fixing problems with ``SortedCheckboxSelectMultiple`` widget, especially in\n admin where a \"create and add another item\" popup is available.\n\n0.2.3\n-----\n\n* Fixing issue with primary keys instead of model instances for ``.add()`` and\n ``.remove()`` methods in ``SortedRelatedManager``.\n\n0.2.2\n-----\n\n* Fixing validation error for ``SortedCheckboxSelectMultiple``. It caused\n errors if only one value was passed.\n\n0.2.1\n-----\n\n* Removed unnecessary reference of jquery ui css file in\n ``SortedCheckboxSelectMultiple``. Thanks to Klaas van Schelven and Yuwei Yu\n for the hint.\n\n0.2.0\n-----\n\n* Added a widget for use in admin.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/jazzband/django-sortedm2m", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "django-sortedm2m", "package_url": "https://pypi.org/project/django-sortedm2m/", "platform": "", "project_url": "https://pypi.org/project/django-sortedm2m/", "project_urls": { "Homepage": "http://github.com/jazzband/django-sortedm2m" }, "release_url": "https://pypi.org/project/django-sortedm2m/2.0.0/", "requires_dist": null, "requires_python": "", "summary": "Drop-in replacement for django's many to many field with sorted relations.", "version": "2.0.0" }, "last_serial": 5737993, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "40f1a15c5abb51473d81004e6345c705", "sha256": "9dccf3c0cc7f21849a7d5c089385935d07b592e1fbd523b64b03b8ae69da555f" }, "downloads": -1, "filename": "django-sortedm2m-0.1.0.tar.gz", "has_sig": false, "md5_digest": "40f1a15c5abb51473d81004e6345c705", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6278, "upload_time": "2010-04-16T21:13:06", "url": "https://files.pythonhosted.org/packages/14/9c/51383d5fa53319caf119a27177c00da8c98577a2735bff7318f5fa193ab4/django-sortedm2m-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "5789663fbdee387648be6b80cf49e2d8", "sha256": "457f6f71492fab7d3fe368cd5af6f6a995474bab43f68404373faaa075cf00f1" }, "downloads": -1, "filename": "django-sortedm2m-0.1.1.tar.gz", "has_sig": false, "md5_digest": "5789663fbdee387648be6b80cf49e2d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6519, "upload_time": "2010-04-17T16:28:17", "url": "https://files.pythonhosted.org/packages/81/61/a432e2ec93a956a52bb88824e23b1d28ef3ebda3df492809ed9360a72f64/django-sortedm2m-0.1.1.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "188e940e347dfecffa4b865c6cdecd3a", "sha256": "a23563599925a03f85f73bf8e750debda19de9ec1592e35f74861a18dff15b44" }, "downloads": -1, "filename": "django-sortedm2m-0.10.0.tar.gz", "has_sig": false, "md5_digest": "188e940e347dfecffa4b865c6cdecd3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32834, "upload_time": "2015-05-21T22:32:10", "url": "https://files.pythonhosted.org/packages/5d/21/1658897ee394ff1ed8614d2766c79874d4927e1d6a3711e721711d9140de/django-sortedm2m-0.10.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "d344da863f4c9bc2292ed24ada91f580", "sha256": "23d9168467df7e74b8dc3ee51ddc1a212e02254beef97664ed33798d9eb4e528" }, "downloads": -1, "filename": "django-sortedm2m-0.2.0.tar.gz", "has_sig": false, "md5_digest": "d344da863f4c9bc2292ed24ada91f580", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23481, "upload_time": "2010-06-09T20:46:39", "url": "https://files.pythonhosted.org/packages/8d/43/a0309815112d36bd3774fc337b2b40ec2faa8785ded233e3a6a4ec51c23f/django-sortedm2m-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "85c8ed7dcb6e36ad2bb13956803b7417", "sha256": "c79220dbf048cf3c471bc73c8bb9d85710c2d14962c4cbaf4f13c8a49963ae96" }, "downloads": -1, "filename": "django-sortedm2m-0.2.1.tar.gz", "has_sig": false, "md5_digest": "85c8ed7dcb6e36ad2bb13956803b7417", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23441, "upload_time": "2010-06-18T19:46:29", "url": "https://files.pythonhosted.org/packages/54/a1/0c3b45cccf4e54f44200cfcdc354495d1b75dfebc7637e50f822a490ab95/django-sortedm2m-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "448547a66c95683cb8fdc4742192264d", "sha256": "8dd171777fa55f576079eab3b385ce32edf7bbd202b68dce4748ed1ecc41bfa4" }, "downloads": -1, "filename": "django-sortedm2m-0.2.2.tar.gz", "has_sig": false, "md5_digest": "448547a66c95683cb8fdc4742192264d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23708, "upload_time": "2010-06-21T09:42:55", "url": "https://files.pythonhosted.org/packages/69/f6/ea9dd32da7c860f1f3cd3b78f85a14b19756b8b03200b55ddc88206b857b/django-sortedm2m-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "82b4d664886bb524a32c21e3ba4137dc", "sha256": "3bc7b3c6a8e6d7c258e1388bbdbcf9d6bbb7c3d1469efa6b4dad6fe527ea3f58" }, "downloads": -1, "filename": "django-sortedm2m-0.2.3.tar.gz", "has_sig": false, "md5_digest": "82b4d664886bb524a32c21e3ba4137dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23983, "upload_time": "2010-06-21T10:35:05", "url": "https://files.pythonhosted.org/packages/0b/11/6687c13d9766308b364f1a1eed4c645b0ed8026ec190c7fba38d4bdf9157/django-sortedm2m-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "9b8967a4e31dc018f5f80f8cb9bfa3e9", "sha256": "9ebfcf9ba465bfeacd81f82a699789b7a3632020dc53b4ffc51fe50f4856a2bb" }, "downloads": -1, "filename": "django-sortedm2m-0.2.4.tar.gz", "has_sig": false, "md5_digest": "9b8967a4e31dc018f5f80f8cb9bfa3e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23595, "upload_time": "2010-10-05T13:12:52", "url": "https://files.pythonhosted.org/packages/5c/b4/1c6075a083ac786377ab0c3a9e01fd1330b3fb0de14736dd7da4b2c109a6/django-sortedm2m-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "a562faac963cb6d9fd8649724d241d4e", "sha256": "aae254137bfaf2422cb1d0245b02b6fc4d9a6cd039c8dfa4c794c214a63790f4" }, "downloads": -1, "filename": "django-sortedm2m-0.2.5.tar.gz", "has_sig": false, "md5_digest": "a562faac963cb6d9fd8649724d241d4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23625, "upload_time": "2010-10-05T13:25:37", "url": "https://files.pythonhosted.org/packages/57/58/e6ef005d354cca9f766c337d7e1f7a8f939b923263e8645e13c4a1492d69/django-sortedm2m-0.2.5.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "cbbdcff4703eb425457adb7cc64af450", "sha256": "7d4635faa8854def8889a7ad14ab3f475885f28b4f46b3497ce252bc77f732c7" }, "downloads": -1, "filename": "django-sortedm2m-0.3.0.tar.gz", "has_sig": false, "md5_digest": "cbbdcff4703eb425457adb7cc64af450", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24040, "upload_time": "2010-10-07T01:37:02", "url": "https://files.pythonhosted.org/packages/62/60/262e8c85c3f2d3aa1a972933842443e75067c0330cbe1fd74ab457c94503/django-sortedm2m-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "26a369fcd5514978edeb90fce3449a09", "sha256": "7b09a003d4c8abfb56a6db89001c66553b1588c953a36334eba0072cd0d8fd51" }, "downloads": -1, "filename": "django-sortedm2m-0.3.1.tar.gz", "has_sig": false, "md5_digest": "26a369fcd5514978edeb90fce3449a09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25072, "upload_time": "2010-10-12T14:36:12", "url": "https://files.pythonhosted.org/packages/bd/bf/36ae3fafe239f56eae831274bbafc0e07dcd6c97ead0713dd8e80c447330/django-sortedm2m-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "f625c7b8d1189a9412bd09b037dd0bbb", "sha256": "cbb741f402cbbf258499a5b97c5d6101fea1ce323e90598805a483f1581bcc99" }, "downloads": -1, "filename": "django-sortedm2m-0.3.2.tar.gz", "has_sig": false, "md5_digest": "f625c7b8d1189a9412bd09b037dd0bbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25255, "upload_time": "2010-10-24T17:52:26", "url": "https://files.pythonhosted.org/packages/d1/c6/c3967f7453d72a66d59e394f19b57218436d3502af50437cf7e1c6165901/django-sortedm2m-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "0c99c2caa36cc93f89dbfaf43cccf388", "sha256": "7e01e6076c332ffb97cf09d4e9045e59d0f61bda7a431aa942be13a506821b54" }, "downloads": -1, "filename": "django-sortedm2m-0.3.3.tar.gz", "has_sig": false, "md5_digest": "0c99c2caa36cc93f89dbfaf43cccf388", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25026, "upload_time": "2011-12-10T17:45:43", "url": "https://files.pythonhosted.org/packages/0f/f8/a7e0e35bcbc5836dc5c471e58a71d615570df9e489cf2694f861bc6250b3/django-sortedm2m-0.3.3.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "901d2d0f2a9b6d2c4204aa02d12c004d", "sha256": "758a776dc3e6b9cfbefef184293c1526c2b71a227f3d53fae4aedf55c1409449" }, "downloads": -1, "filename": "django-sortedm2m-0.4.0.tar.gz", "has_sig": false, "md5_digest": "901d2d0f2a9b6d2c4204aa02d12c004d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25360, "upload_time": "2012-06-27T01:19:44", "url": "https://files.pythonhosted.org/packages/6a/67/ac65035a57d0beed2d45902bf5fd8bc4912fb5cd555e145f8b6e7a077179/django-sortedm2m-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "d63ad2dddeffd160b0fed09a69565c1c", "sha256": "4b13240cfb46e1ae202926bdffb181b7b74fb75688ed04db4637aa8b29ce5d5d" }, "downloads": -1, "filename": "django-sortedm2m-0.5.0.tar.gz", "has_sig": false, "md5_digest": "d63ad2dddeffd160b0fed09a69565c1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25688, "upload_time": "2013-01-29T00:12:31", "url": "https://files.pythonhosted.org/packages/15/a3/be6667b0bbe6d6c52078a3123919b137c7e09f057574db0eea1046a5211c/django-sortedm2m-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "c6a653adbce96b4bc348a72fa7722ac4", "sha256": "7ed31465f7cbe93a0579b775f267d8595ae3d38a2be61df7d10c4fcb169b727b" }, "downloads": -1, "filename": "django-sortedm2m-0.6.0.tar.gz", "has_sig": false, "md5_digest": "c6a653adbce96b4bc348a72fa7722ac4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24048, "upload_time": "2013-07-15T19:29:25", "url": "https://files.pythonhosted.org/packages/6c/92/8934d44745200c95cda7628bbf0522df8857c9e87df54582ed100d60c1f8/django-sortedm2m-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "67d495b8003c16fc458991aac62e51bd", "sha256": "099baa5ad99ae7f70b3896956a1101a22dd3583eff95873bd8c9fc76ed6387b7" }, "downloads": -1, "filename": "django-sortedm2m-0.6.1.tar.gz", "has_sig": false, "md5_digest": "67d495b8003c16fc458991aac62e51bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24124, "upload_time": "2014-01-16T19:40:17", "url": "https://files.pythonhosted.org/packages/f6/52/4e1b86ee320f03040d76fcf5180ee985a7734571d2f83afe3b0f92c0b854/django-sortedm2m-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "eeede27f00c82bd1ea789d3b77a2d78a", "sha256": "bf6562789b50ca29aa049f9af96063acf8be4dbc8858a56d9a7966699ff902a0" }, "downloads": -1, "filename": "django-sortedm2m-0.7.0.tar.gz", "has_sig": false, "md5_digest": "eeede27f00c82bd1ea789d3b77a2d78a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24703, "upload_time": "2014-02-18T20:42:30", "url": "https://files.pythonhosted.org/packages/fc/79/b2aac8ddd1e7ce608f32439341f7467f62187940d84b20d844cd6039a9fe/django-sortedm2m-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "e6f372ce6ccc78b9995e5723f3991348", "sha256": "5ac79809d56287a7b0ca4c8f6b2d9f01a827dc510575f0296429b77b8851e2b5" }, "downloads": -1, "filename": "django-sortedm2m-0.8.0.tar.gz", "has_sig": false, "md5_digest": "e6f372ce6ccc78b9995e5723f3991348", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24930, "upload_time": "2014-06-25T22:52:03", "url": "https://files.pythonhosted.org/packages/a4/ac/0656b7284bb1c8f60eb296f873bb2c315321268ec13668de69ac39cc39c8/django-sortedm2m-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "20f34b012becb5b04f11a648f2ea11b9", "sha256": "cfef94710de781399fd5192cc17800bdb3176c7cac74088259b73289ed2d36b0" }, "downloads": -1, "filename": "django-sortedm2m-0.8.1.tar.gz", "has_sig": false, "md5_digest": "20f34b012becb5b04f11a648f2ea11b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26161, "upload_time": "2014-09-23T11:00:17", "url": "https://files.pythonhosted.org/packages/0d/d9/c87e79fe3e12b7118ad7172445a08fb1eba44907e333ce6cf74a6a1f0184/django-sortedm2m-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "5244a5418ff1fe557f071d9ff61cc256", "sha256": "c752ce029592a7147096134d9981202d311699e8fa837cd762b1359ebb307576" }, "downloads": -1, "filename": "django-sortedm2m-0.9.0.tar.gz", "has_sig": false, "md5_digest": "5244a5418ff1fe557f071d9ff61cc256", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31049, "upload_time": "2015-02-02T14:10:16", "url": "https://files.pythonhosted.org/packages/2a/15/be26187d68b2d857a4ec738be9a1f4372b7d755e2ec9c6c0cf3325b3ea5e/django-sortedm2m-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "e0592dec3eb853175854d0b7f0507461", "sha256": "7ecddecf82414ec907e399976600b1e0753f8dfbfcee1d676a0c3df3d9d80320" }, "downloads": -1, "filename": "django-sortedm2m-0.9.1.tar.gz", "has_sig": false, "md5_digest": "e0592dec3eb853175854d0b7f0507461", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31169, "upload_time": "2015-02-02T14:23:02", "url": "https://files.pythonhosted.org/packages/ce/c8/8ea1a9b1dfba49cdfb67d28f321e2332b84183f30aa759da9fb0a56a0262/django-sortedm2m-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "04cca0ea454c9547b40afe6096b53b9e", "sha256": "c8f3609797a5e87a6ac3dca1822ba47784ab9455fc2ca9ee3264fbc5810bfb7d" }, "downloads": -1, "filename": "django-sortedm2m-0.9.2.tar.gz", "has_sig": false, "md5_digest": "04cca0ea454c9547b40afe6096b53b9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31283, "upload_time": "2015-02-06T10:50:13", "url": "https://files.pythonhosted.org/packages/9f/a0/04158b4c1b645407fe0b2580c79abf0072e1b762858955571a70d3287a68/django-sortedm2m-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "4fdc5437273d087dfca7354d07c1ae2c", "sha256": "0c2a9826dd3454492742e66a5a353abbeda38678a8e85b0b340b00a66200a127" }, "downloads": -1, "filename": "django-sortedm2m-0.9.3.tar.gz", "has_sig": false, "md5_digest": "4fdc5437273d087dfca7354d07c1ae2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31323, "upload_time": "2015-02-06T14:43:17", "url": "https://files.pythonhosted.org/packages/0c/0c/e2ae1c2fc0089f9c9f187953dce2bba4ab6f71d419c5f5e3a899f969983f/django-sortedm2m-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "4db43fd962f0f886fd9acf0c3283c055", "sha256": "94446bd634bc8c88c5a927c81edd733452ee815660c1b0f501a504d16f285798" }, "downloads": -1, "filename": "django-sortedm2m-0.9.4.tar.gz", "has_sig": false, "md5_digest": "4db43fd962f0f886fd9acf0c3283c055", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31549, "upload_time": "2015-03-02T08:35:04", "url": "https://files.pythonhosted.org/packages/14/ee/d6b6e14b37931cd45b25a580e3d04568d54bb6a024f6a9aec38acdbb3197/django-sortedm2m-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "8a82b32e1b47a24884f3b79ab37564e5", "sha256": "ccd03d14409ae2ffd66a02315a8b168310ebd252b25f87898617b9cf885dd370" }, "downloads": -1, "filename": "django-sortedm2m-0.9.5.tar.gz", "has_sig": false, "md5_digest": "8a82b32e1b47a24884f3b79ab37564e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31843, "upload_time": "2015-04-16T08:51:20", "url": "https://files.pythonhosted.org/packages/df/95/2952bd525e874f6020dd73deda5c5af6937dd9e9f00af475e0416af58ede/django-sortedm2m-0.9.5.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "64cdcd1cc090f02a7351aa44ee7972d4", "sha256": "a3de9702dfa48dc2f7d9be94981bf3973223842e94574155ed7adffe43d825ed" }, "downloads": -1, "filename": "django-sortedm2m-1.0.0.tar.gz", "has_sig": false, "md5_digest": "64cdcd1cc090f02a7351aa44ee7972d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31015, "upload_time": "2015-06-17T22:16:00", "url": "https://files.pythonhosted.org/packages/9d/f9/c04fab3493a352314228634835bd074dbe239189e416bc357759b10c14ae/django-sortedm2m-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "c2744b10bd75fc23bb8e5e249d9005ca", "sha256": "5c7eea473ee64eda12d334bbd1254323b15bf0d11992721035fcdb9a35a07756" }, "downloads": -1, "filename": "django-sortedm2m-1.0.1.tar.gz", "has_sig": false, "md5_digest": "c2744b10bd75fc23bb8e5e249d9005ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31128, "upload_time": "2015-06-18T08:25:00", "url": "https://files.pythonhosted.org/packages/dc/c0/607d14fc9ba8fb4484cd1be9b714775573ade5e8fdb73f6fd8d0a4ecea90/django-sortedm2m-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "80bdb52c3b571beb4939a041879077d7", "sha256": "5c99ccd1f1e731c7dddaef9e257d2342ae79bd12a47576caa96ca3b9723e9d88" }, "downloads": -1, "filename": "django-sortedm2m-1.0.2.tar.gz", "has_sig": false, "md5_digest": "80bdb52c3b571beb4939a041879077d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33694, "upload_time": "2015-08-06T21:42:43", "url": "https://files.pythonhosted.org/packages/32/9b/c50766d69f6738c5c66aba58077d2a0d3f37acd37d93996396b08d7cd712/django-sortedm2m-1.0.2.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "581398446a9380da7e59b4ad3c911781", "sha256": "a591e97d2f9f20b73bbc294c2245633a2f7ee8e074291a6fd4c6e3eb064806a1" }, "downloads": -1, "filename": "django-sortedm2m-1.1.0.tar.gz", "has_sig": false, "md5_digest": "581398446a9380da7e59b4ad3c911781", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34398, "upload_time": "2015-12-02T10:15:43", "url": "https://files.pythonhosted.org/packages/a5/ff/e16507c4415a38c3484db0b227dceac245fb62920f89ab9406863aa045c4/django-sortedm2m-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "fa5c7960f6c9d7a684a50b61e06632e4", "sha256": "d38d201da8593c94c8706f9ef30e3203bf0d352d6264abbb7babfbb112f86cb4" }, "downloads": -1, "filename": "django-sortedm2m-1.1.1.tar.gz", "has_sig": false, "md5_digest": "fa5c7960f6c9d7a684a50b61e06632e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34749, "upload_time": "2015-12-07T16:42:04", "url": "https://files.pythonhosted.org/packages/62/41/b775a781d2ee1cbc520273fc784b86e2b665a63ccf5fc356370ed5daf722/django-sortedm2m-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "f67ced955d6b60fe1c724ca766b5a99f", "sha256": "93ea990c1b176b15ab04978ece366d47aa778bf0735ad862b09804ae3ce0bff6" }, "downloads": -1, "filename": "django-sortedm2m-1.1.2.tar.gz", "has_sig": false, "md5_digest": "f67ced955d6b60fe1c724ca766b5a99f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34942, "upload_time": "2016-03-30T06:36:51", "url": "https://files.pythonhosted.org/packages/1f/a5/d5b0b739fcf48090d08647f8e66bb941a6cef3d310d332f7b8fc18e8aad1/django-sortedm2m-1.1.2.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "bd4682514361f83d5dadbf3ded7d7373", "sha256": "29eb361bab1db08d5097b4c66f3332d8dad821b1eae97089881b83332b182014" }, "downloads": -1, "filename": "django-sortedm2m-1.2.0.tar.gz", "has_sig": false, "md5_digest": "bd4682514361f83d5dadbf3ded7d7373", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35076, "upload_time": "2016-03-30T07:06:21", "url": "https://files.pythonhosted.org/packages/13/22/3b6786cf986056593ff6b952541b0455f5b8c27975bb95661f91ed1d9ae0/django-sortedm2m-1.2.0.tar.gz" } ], "1.2.1.dev1": [ { "comment_text": "", "digests": { "md5": "7c1c384754f0ef6cfb5466942097ad95", "sha256": "88ccc6fc75bdaf3181611b1383af6b7ff5db89223cf2d673669fe2515fea3de8" }, "downloads": -1, "filename": "django-sortedm2m-1.2.1.dev1.tar.gz", "has_sig": false, "md5_digest": "7c1c384754f0ef6cfb5466942097ad95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35104, "upload_time": "2016-04-21T15:00:09", "url": "https://files.pythonhosted.org/packages/1a/0c/87e387b9f1fc4c03b584e6906e6d2a36c1db402e7751c9e32a1a75a268c5/django-sortedm2m-1.2.1.dev1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "85f535d66a3770709953c26768a83b3a", "sha256": "59b21f4591b084bb23165507484f7a1aed53eba25ade6e8492e21d4ef964877e" }, "downloads": -1, "filename": "django-sortedm2m-1.2.2.tar.gz", "has_sig": false, "md5_digest": "85f535d66a3770709953c26768a83b3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35063, "upload_time": "2016-04-21T15:24:48", "url": "https://files.pythonhosted.org/packages/81/8c/d9c490a7e6db2ec81c5611e923ad79a4ea4b2b24b6cdd7d1da996d1b7497/django-sortedm2m-1.2.2.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "e4a4792bb18ac83d3626296c4e0eaddd", "sha256": "df67db5a71a780bff61a7a659b84a63ddf1a30fb6ed83dac4968add4cb6c165c" }, "downloads": -1, "filename": "django-sortedm2m-1.3.0.tar.gz", "has_sig": false, "md5_digest": "e4a4792bb18ac83d3626296c4e0eaddd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35519, "upload_time": "2016-05-24T20:27:21", "url": "https://files.pythonhosted.org/packages/f2/43/c6acf87a62eaca48483b5d11c5dcc443ef0138c620c63b47e622ce5ce9b8/django-sortedm2m-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "8b683392a37b6620c9f84c8989f08504", "sha256": "b7c9525b444fa891f094a27b356ffb3ddebdf65522e026a3ba25ac50bf6324d6" }, "downloads": -1, "filename": "django-sortedm2m-1.3.1.tar.gz", "has_sig": false, "md5_digest": "8b683392a37b6620c9f84c8989f08504", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36099, "upload_time": "2016-06-27T17:57:02", "url": "https://files.pythonhosted.org/packages/19/6b/0bb7e53584baaa3e784fbf367fc061b302f76450aa87b3fa91a75f9dfeb6/django-sortedm2m-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "fdfa4fb58e4b070333827429e860e9f1", "sha256": "e1a4fbf55149b75460a9a1c5cb90a3600af28ec465251a98cb1a59dd637d6be1" }, "downloads": -1, "filename": "django-sortedm2m-1.3.2.tar.gz", "has_sig": false, "md5_digest": "fdfa4fb58e4b070333827429e860e9f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36246, "upload_time": "2016-06-28T20:19:02", "url": "https://files.pythonhosted.org/packages/33/f2/50f7ea85c246ce7fe3a6584e37a4056aa5c1cddabd370c0450345e007ec3/django-sortedm2m-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "79ceea284251a98f02e2a899821bda41", "sha256": "710ba10b3afc862dd0f087220c5b3840a3a8d521f0523b90166cac138b39ae2b" }, "downloads": -1, "filename": "django-sortedm2m-1.3.3.tar.gz", "has_sig": false, "md5_digest": "79ceea284251a98f02e2a899821bda41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36624, "upload_time": "2017-01-02T15:07:42", "url": "https://files.pythonhosted.org/packages/7c/b5/f09fb9e492f0a6193b17ece580663563d153949b3f323a49a0efd2bcf459/django-sortedm2m-1.3.3.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "3c439343b56570c0ae352c2daf9cf80b", "sha256": "09fdb9c4678e9fbd79cb18d7e301b0823107d71e2373dc2f19e26446098e259b" }, "downloads": -1, "filename": "django-sortedm2m-1.4.0.tar.gz", "has_sig": false, "md5_digest": "3c439343b56570c0ae352c2daf9cf80b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37431, "upload_time": "2017-06-08T21:33:54", "url": "https://files.pythonhosted.org/packages/93/f7/5dc928d9ff217e99a55a2aedc1eae9119c5c804d1584e1d0f1d1f563b606/django-sortedm2m-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "061fdf994f10579c88c61ad4ccb9a0d7", "sha256": "52942b5295efcf252b6bbff58be70365d9f5d59d2e6d0f1bf9d9f2d0dbef4814" }, "downloads": -1, "filename": "django-sortedm2m-1.5.0.tar.gz", "has_sig": false, "md5_digest": "061fdf994f10579c88c61ad4ccb9a0d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37985, "upload_time": "2017-08-02T20:41:15", "url": "https://files.pythonhosted.org/packages/70/54/3eaf25cdefdd4ea82a68537428f41536a086dc2200662ae55253d4a96c1f/django-sortedm2m-1.5.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "b2b26fa5e4690452dafd25d623cce761", "sha256": "7110089acca47fb8194e3272f2fc8dc87897800fa419200fff42e7de70672c65" }, "downloads": -1, "filename": "django_sortedm2m-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2b26fa5e4690452dafd25d623cce761", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33303, "upload_time": "2019-08-27T16:37:09", "url": "https://files.pythonhosted.org/packages/75/24/f25b0aeaac43af8ef44dbb013c35238617c5d55805beca20999b596ef120/django_sortedm2m-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b4b4e132e6ab5323c8dd3ad29b7a59a", "sha256": "7a95e40ece52410d8617eb4e9e9634d59cbe751b0e6311192f846d72f771147b" }, "downloads": -1, "filename": "django-sortedm2m-2.0.0.tar.gz", "has_sig": false, "md5_digest": "9b4b4e132e6ab5323c8dd3ad29b7a59a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30846, "upload_time": "2019-08-27T16:31:08", "url": "https://files.pythonhosted.org/packages/af/52/b50bf7c4e72c3e568b73ec9981a2e031308dcb2983a58d63ed035e07ca80/django-sortedm2m-2.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b2b26fa5e4690452dafd25d623cce761", "sha256": "7110089acca47fb8194e3272f2fc8dc87897800fa419200fff42e7de70672c65" }, "downloads": -1, "filename": "django_sortedm2m-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2b26fa5e4690452dafd25d623cce761", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33303, "upload_time": "2019-08-27T16:37:09", "url": "https://files.pythonhosted.org/packages/75/24/f25b0aeaac43af8ef44dbb013c35238617c5d55805beca20999b596ef120/django_sortedm2m-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b4b4e132e6ab5323c8dd3ad29b7a59a", "sha256": "7a95e40ece52410d8617eb4e9e9634d59cbe751b0e6311192f846d72f771147b" }, "downloads": -1, "filename": "django-sortedm2m-2.0.0.tar.gz", "has_sig": false, "md5_digest": "9b4b4e132e6ab5323c8dd3ad29b7a59a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30846, "upload_time": "2019-08-27T16:31:08", "url": "https://files.pythonhosted.org/packages/af/52/b50bf7c4e72c3e568b73ec9981a2e031308dcb2983a58d63ed035e07ca80/django-sortedm2m-2.0.0.tar.gz" } ] }