Metadata-Version: 1.1
Name: fab-addon-audit
Version: 0.0.1
Summary: Small text to resume your addon
Home-page: https://github.com/dpgaspar/flask-appbuilder/
Author: You name goes here
Author-email: youiremail@somewhere.com
License: BSD
Description: F.A.B. AddOn for Auditing 
        -------------------------
        
        Will add audit views to F.A.B's security menu. Enables audit for insert, update and delete operations
        on any ModelView you choose.
        
        - Install it::
        
        	pip install fab_addon_audit
        
        - Use it:
        
        On you application add the following key to **config.py**
        
        
            ADDON_MANAGERS = ['fab_addon_audit.manager.AuditAddOnManager']
        
        
        On your application change your views.py file to import::
        
        
            from fab_addon_audit.views import AuditedModelView
        
        
        Then subclass the ModelView's you want to audit from AuditedModelView::
        
        
            class ContactModelView(AuditedModelView):
                datamodel = SQLAInterface(Contact)
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
