Metadata-Version: 1.1
Name: django-simple-export
Version: 0.1
Summary: A simple Django app to export admin models as excel files.
Home-page: https://github.com/lkiarest/django-simple-export
Author: lkiarest
Author-email: rushi_wowen@163.com
License: MIT License
Description-Content-Type: UNKNOWN
Description: =====
        Admin Export
        =====
        
        Add export action in admin model list page.
        
        Quick start
        -----------
        1. Install this package::
        
            pip install django-simple-export
        
        
        2. Add "admin_export" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'admin_export',
            ]
        
        
        3. Include the polls URLconf in your project urls.py like this::
        
            path('dae/', include('admin_export.urls')),
        
        
        4. Add export annotation to your model in admin.py, for example::
        
            from admin_export.deco import dae_export
        
            @admin.register(YourModel)
            @dae_export(YourModel)
            class YourAdmin(admin.ModelAdmin):
                # ...
        
        
        5. Start the development server and visit http://127.0.0.1:8000/admin/,
           then click to view the list of the model(you'll need the Admin app enabled).
        
        
        6. There will be an 'Export' button in the page before 'Add' button.
           click this button, current data list will be exported into a file.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
