Metadata-Version: 2.1
Name: django-admin-sortable2
Version: 1.0.2
Summary: Generic drag-and-drop sorting for the List, the Stacked- and the Tabular-Inlines Views in the Django Admin
Home-page: https://github.com/jrief/django-admin-sortable2
Author: Jacob Rief
Author-email: jacob.rief@gmail.com
License: MIT
Description: # django-admin-sortable2
        
        A replacement for django-admin-sortable using an unintrusive approach.
        
        [![Build Status](https://github.com/jrief/django-admin-sortable2/actions/workflows/django.yml/badge.svg)](https://github.com/jrief/django-admin-sortable2/actions/workflows/django.yml)
        [![PyPI version](https://img.shields.io/pypi/v/django-admin-sortable2.svg)](https://pypi.python.org/pypi/django-admin-sortable2)
        [![Python versions](https://img.shields.io/pypi/pyversions/django-admin-sortable2.svg)](https://pypi.python.org/pypi/django-admin-sortable2)
        [![Django versions](https://img.shields.io/pypi/djversions/django-admin-sortable2)](https://pypi.python.org/pypi/django-admin-sortable2)
        [![Downloads](https://img.shields.io/pypi/dm/django-admin-sortable2.svg)](https://img.shields.io/pypi/dm/django-admin-sortable2.svg)
        [![Software license](https://img.shields.io/pypi/l/django-admin-sortable2.svg)](https://github.com/jrief/django-admin-sortable2/blob/master/LICENSE)
        
        This plugin is a generic drag-and-drop ordering module for sorting objects in the List, the Stacked-
        and the Tabular-Inlines Views in the Django Admin interface.
        
        ![Demo](https://raw.githubusercontent.com/jrief/django-admin-sortable2/master/demo.gif)
        
        This module offers simple mixin classes which enrich the functionality of any existing class derived
        from `admin.ModelAdmin`, `admin.StackedInline` or `admin.TabularInline`.
        
        Thus it makes it very easy to integrate with existing models and their model admin interfaces.
        Existing models can inherit from `models.Model` or any other class derived thereof. No special
        base class is required.
        
        
        ## Project's home
        
        https://github.com/jrief/django-admin-sortable2
        
        Detailled documentation on [ReadTheDocs](http://django-admin-sortable2.readthedocs.org/en/latest/).
        
        To ask questions or reporting bugs, please use the [issue tracker](https://github.com/jrief/django-admin-sortable2/issues).
        
        
        ## Why should You use it?
        
        All available plugins which add functionality to make list views for the Django admin interface
        sortable, offer a base class to be used instead of `models.Model`. This abstract base class then
        contains a hard coded position field, additional methods, and meta directives.
        
        This inhibits to create sortable abstract models. **django-admin-sortable2** does not have these
        restrictions.
        
        
        ## License
        
        MIT licensed.
        
        Copyright &copy; 2013-2021 Jacob Rief and contributors.
        
        [![Twitter Follow](https://img.shields.io/twitter/follow/jacobrief.svg?style=social&label=Jacob+Rief)](https://twitter.com/jacobrief)
        
Keywords: django
Platform: OS Independent
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Description-Content-Type: text/markdown
