Metadata-Version: 2.1
Name: django-auth-reports
Version: 2.0.4
Summary: Adds csv reports for auth groups, right-side filtering for filter_horizontal m2m widgets
Home-page: https://github.com/ImaginaryLandscape/django-auth-reports
License: BSD
Author: Imagescape
Author-email: info@imagescape.com
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown


Django Auth Reports
===================

A Django application that:  
-Adds csv downloads of group permissions  
-Adds right-side filtering in m2m filter_horizontal widgets

Compatibility
=============

For Django 1.x, use django-auth-reports 1.x

For Django 2.x, use django-auth-reports 2.x

Installation
============

    $ pip install django-auth-reports

Add the following to the top of the INSTALLED_APPS in your project's settings file, above django.contrib.admin and django.contrib auth:

    'auth_reports',

Collect static media:

   ``manage.py collectstatic``

