Metadata-Version: 1.1
Name: django-face-off
Version: 0.1.0
Summary: A Django application to provide a user switch
Home-page: https://github.com/hkage/django-face-off
Author: Henning Kage
Author-email: <henning.kage@gmail.com>
License: MIT
Description-Content-Type: UNKNOWN
Description: django-face-off
        ===============
        
        A Django application to provide a user switch for admin users without exposing the actual users
        passwords.
        
        Features
        --
        * Admin form to activate the user switch
        
        Supports
        --
        * Django >= 1.4
        
        Installation
        --
        
        ``django-face-off`` is currently in development. There aren't any PyPi packages yet.
        
        Get the latest version:
        
            $ git clone git@github.com:hkage/django-face-off.git#egg=django-face-off
        
        and run the installation via setup.py:
        
            $ python setup.py install
        
        Usage
        --
        
        Add ``face-off`` to the list of installed apps in your settings:
        
            INSTALLED_APPS = (
                'face_off'
            )
        
        Add the middleware:
        
            MIDDLEWARE_CLASSES = (
                'face_off.middleware.UserRepresentationMiddleware',
            )
        
        Run the migration:
        
            $ python manage.py migrate
        
        Testing
        --
        
            $ py.test
        
        Settings
        --
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
