Metadata-Version: 1.1
Name: django-admin-enhancer
Version: 0.1.2
Summary: Simple app that
Home-page: https://github.com/charettes/django-admin-enhancer
Author: Simon Charette
Author-email: charette.s@gmail.com
License: MIT License
Description: # django-admin-enhancer
        
        ## Overview
        
        A simple django app that provides change and deletion links to FK fields in the admin while ticket [#13163](https://code.djangoproject.com/ticket/13163) and [#13165](https://code.djangoproject.com/ticket/13165) are not fixed.
        
        Note that this apps works with django >= 1.4 only.
        
        ## Display
        
        ![selected](https://dl.dropbox.com/u/2759157/selected.png)
        
        ![selected](https://dl.dropbox.com/u/2759157/empty.png)
        
        [Video displaying interaction with the widget](https://www.youtube.com/watch?v=H4xqku-BPBU)
        
        ## Usage
        
        Make sure to mix `admin_enhancer.EnhancedModelAdminMixin` when dealing with `django.contrib.admin.ModelAdmin` subclasses and `admin_enhancer.EnhancedAdminMixin` when dealing with `django.contrib.admin.InlineModelAdmin` at both ends of the relationship.
        
        If edition and deletion controls appears but the popup is not closed nor is the select box updated your `ModelAdmin` subclass referenced by the field in question is probably not mixed with `admin_enhancer.EnhancedModelAdminMixin`.
        
        For some examples take a look [here](https://github.com/charettes/django-admin-enhancer/blob/master/tests/test_app/admin.py).
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
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
