Metadata-Version: 2.1
Name: django-export-action-py3
Version: 0.4
Summary: Generic export action for Django's Admin for Python 3.6 and Django 2.x
Home-page: https://github.com/juanjosegb/django-export-action_py3
Author: Juan José Garcia
Author-email: juanjose.garciabeza@hotmail.com
License: MIT
Description: # Django Export Action
        Generic export action for Django's Admin for Python 3.6 and Django 2.x
        ## Quickstart
        Install Django Export Action:
        ```
        pip install django-export-action-py3
        ```
        Include it on INSTALLED_APPS:
        ```
        'export_action',
        ```
        Add to urls:
        ```
        url(r'^export_action/', include("export_action.urls", namespace="export_action")),
        ```
        ## Usage
        Go to any admin page, select fields, then select the export to xls action. Then check off any fields you want to export.
        
        ## Features
        - Generic action to enable export data from Admin.
        - Automatic traversal of model relations.
        - Selection of fields to export.
        - Can export to XSLx, CSV and HTML.
        
        ## Reference
        This is a fork of another repository to keep the compatibility with Django 2.x and Python 3.6.
        
        Original repository:
        https://github.com/fgmacedo/django-export-action
        
Keywords: django-export-action-py3
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
