Metadata-Version: 2.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>
Maintainer: Henning Kage
Maintainer-email: <henning.kage@gmail.com>
License: MIT
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
License-File: LICENSE
Requires-Dist: Django>=1.4
Provides-Extra: test
Requires-Dist: pytest==2.8.2; extra == "test"
Requires-Dist: pytest-pep8==1.0.6; extra == "test"
Requires-Dist: pytest-cov==2.2.0; extra == "test"

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
--
