Metadata-Version: 1.1
Name: django-admin-view-permission
Version: 0.1
Summary: A simple Django app which adds view permissions.
Home-page: http://django-admin-view-permission.readthedocs.org/
Author: UNKNOWN
Author-email: UNKNOWN
License: BSD License
Description: =====================
        Admin View Permission
        =====================
        
        .. image:: https://travis-ci.org/ctxis/django-admin-view-permission.svg?branch=master
            :target: https://travis-ci.org/ctxis/django-admin-view-permission
            :alt: Build Status
        .. image:: https://coveralls.io/repos/github/ctxis/django-admin-view-permission/badge.svg?branch=master
           :target: https://coveralls.io/github/ctxis/django-admin-view-permission?branch=master
           :alt: Coverage Status
        .. image:: https://codeclimate.com/github/ctxis/django-admin-view-permission/badges/gpa.svg
           :target: https://codeclimate.com/github/ctxis/django-admin-view-permission
           :alt: Code Climate
        
        Reusable application which provides a view permission for the existing models.
        
        Requirements
        ------------
        
        * Django
        
        Support
        -------
        
        * Django: 1.8, 1.9
        * Python: 2.7, 3.4, 3.5
        
        Setup
        -----
        
        * ``pip install django-admin-view-permission``
        
        and then add ``admin_view_permission`` at the INSTALLED_APPS like this::
        
            INSTALLED_APPS = [
                'admin_view_permission',
                'django.contrib.admin',
                ...
            ]
        
        and finally run ``python manage.py migrate``.
        
        Configuration
        -------------
        
        This app provides a setting::
        
            ADMIN_VIEW_PERMISSION_MODELS = [
                auth.User,
                ...
            ]
        
        in which you can provide which models you want to be added the view permission.
        If you don't specify this setting then the view permission will be applied to
        all the models.
Keywords: django,admin
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
