Metadata-Version: 1.1
Name: django-deletes
Version: 0.1
Summary: A fully functional soft deletes (logical deletes) for django.
Home-page: https://github.com/upgrad/django-deletes
Author: Ankit Mittal
Author-email: ankit@upgrad.com
License: MIT License
Description: Soft Deletes for Django.
        ------------------------
        
        Installation Instructions
        ~~~~~~~~~~~~~~~~~~~~~~~~~
        
        #. pip install django-deletes # Doesnt work yet, clone the repo.
        #. Add ‘softdeletes’ to INSTALLED\_APPS in settings
        
        Usage
        ~~~~~
        
        #. Use Deletable class on the left most in the inhertance chain of the
           model.
        #. Use objects = DeletableManager.from\_queryset(DeletableQuerySet)()
        #. If you want to use a custom manager or a custom Queryset, make sure
           your custom manager inherits from DeletableManagerMixin and your
           custom QuerySet inherits from Deletable QuerySetMixin
        
        Caution
        ~~~~~~~
        
        All cascading delete models should be made deletable, otherwise
        cascading delete would do a real delete to the foreignkey related
        models.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
