Metadata-Version: 1.1
Name: django-admin-import
Version: 0.1.0
Summary: import tool atachable to allmost every django admin
Home-page: http://github.com/allink/django-admin-import/
Author: Marc Egli
Author-email: egli@allink.ch
License: BSD License
Description: Admin Import
        ============
        
        Installation
        ------------
        
        **Notice**: This application is still under heavy development and every thing
        can be subject of change.
        
        1. Add admin_import to INSTALLED_APPS in your settings file.
        
        2. Add an import to your admin like so:
         
            try:
                from admin_import.options import add_import
            except ImportError:
                pass
            else:
                add_import(InviteeAdmin)    
        
        3. Add a button in your admin by overriding the list_view template.
Platform: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires: Django(>=1.3)
