Skip to main content

An extension of Django ManyToMany with ordering

Project description

django-sortedmanytomany
=======================

> In Django, if you need to order a many to many relation you will have to do it by using inlines width a foreign key and a sorting field. If there is no need to add another field in this relation, use inlines would make the admin interface complex where a simple many to many should do the trick.

Installation
------------

```sh
pip install django-sortedmanytomany
```

Adding to installed apps
------------------------

- To use the many to many sorted field, you have to add it to your INSTALLED_APPS on your project's settings.py so the needed static files can be loaded:

```python
INSTALLED_APPS = (
...
'sortedmanytomany',
)
```

Using SortedManyToManyField
---------------------------

- To use SortedManyToMany field, just create a field as if you were adding the default ManyToMany

```python
from django.db import models
from sortedmanytomany.fields import SortedManyToManyField

class Album(models.Model):
...
tracks = SortedManyToManyField('Track')

class Track(models.Model):
...
```

License
-------

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-sortedmanytomany-0.1.0.tar.gz (4.1 kB view details)

Uploaded Source

File details

Details for the file django-sortedmanytomany-0.1.0.tar.gz.

File metadata

File hashes

Hashes for django-sortedmanytomany-0.1.0.tar.gz
Algorithm Hash digest
SHA256 74a962167b758c46c7c1ca53ca97e91581fb6efe10aa57d511fbcf7952ca0471
MD5 0a1529d82d0e28ee9a04abbc7b1d0882
BLAKE2b-256 c90d9fe8603434789e0951186a15b8bc1a3ec8ed266e1792b8d66b30a4819fc6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page