Metadata-Version: 1.1
Name: django-admirarchy
Version: 1.2.2
Summary: Django Admin addon to navigate through hierarchies
Home-page: https://github.com/idlesign/django-admirarchy
Author: Igor `idle sign` Starikov
Author-email: idlesign@yandex.ru
License: BSD 3-Clause License
Description: django-admirarchy
        =================
        https://github.com/idlesign/django-admirarchy
        
        |release| |lic| |coverage|
        
        .. |release| image:: https://img.shields.io/pypi/v/django-admirarchy.svg
            :target: https://pypi.python.org/pypi/django-admirarchy
        
        .. |lic| image:: https://img.shields.io/pypi/l/django-admirarchy.svg
            :target: https://pypi.python.org/pypi/django-admirarchy
        
        .. |coverage| image:: https://img.shields.io/coveralls/idlesign/django-admirarchy/master.svg
            :target: https://coveralls.io/r/idlesign/django-admirarchy
        
        
        Description
        -----------
        
        *Django Admin addon to navigate through hierarchies.*
        
        Have you ever wanted Django Admin to be able to navigate through hierarchies?
        
        Without existing models modifications? Yeah!
        
        Admirarchy does it in an old-school way, just like Norton Commander and Co - one level at a time.
        
        Hierarchies described as adjacency lists and nested sets are supported.
        
        
        .. code-block:: python
        
            # admin.py of your application
            from django.contrib import admin
        
            from admirarchy.toolbox import HierarchicalModelAdmin
        
            from .models import MyModel  # Let's say this model represents a hierarchy.
        
        
            # Inherit from HierarchicalModelAdmin instead of admin.ModelAdmin
            @admin.register(MyModel)
            class MyModelAdmin(HierarchicalModelAdmin):
        
                hierarchy = True  # This enables hierarchy handling.
        
        
        Done. Go navigate %)
        
        
        Documentation
        -------------
        
        http://django-admirarchy.readthedocs.org/
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: BSD License
