Metadata-Version: 1.1
Name: django-admin-sortable2
Version: 0.3.1
Summary: Generic drag-and-drop ordering for objects in the Django admin interface
Home-page: https://github.com/jrief/django-admin-sortable2
Author: Jacob Rief
Author-email: jacob.rief@gmail.com
License: MIT
Description: django-admin-sortable2
        ======================
        
        This Django module is as a replacement for django-admin-sortable using an unintrusive approach.
        
        It is a generic drag-and-drop ordering module for sorting objects in the list view of the Django
        admin interface. This plugin offers simple mixin classes which augment the functionality of any
        existing class derived from ``admin.ModelAdmin``, ``admin.StackedInline`` or ``admin.TabluarInline``.
        It thus makes it very easy to integrate with existing models and their model admin interfaces.
        
        NEW in version 0.3.1
        --------------------
        Fixed issue #25 and another small bug.
        
        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).
        
        Build status
        ------------
        [![Build Status](https://travis-ci.org/jrief/django-admin-sortable2.png?branch=master)](https://travis-ci.org/jrief/django-admin-sortable2)
        
        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
        -------
        Copyright &copy; 2014 Jacob Rief.
        
        Licensed under the MIT license.
        
Keywords: django
Platform: OS Independent
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
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: Development Status :: 4 - Beta
