Metadata-Version: 1.1
Name: django-logentry-admin
Version: 0.1.4
Summary: Show all LogEntries in the Django admin site.
Home-page: http://github.com/yprez/django-logentry-admin
Author: Yuri Prezument
Author-email: y@yprez.com
License: ISC
Description: =====================
        django-logentry-admin
        =====================
        
        |travis-ci-status| |coverage-status| |pypi-status|
        
        Add Django LogEntries the the Django admin site.
        
        Allows to view all log entries in the admin.
        
        Originally based on: `Django snippet 2484 <http://djangosnippets.org/snippets/2484/>`_
        
        
        Installation
        ============
        
        Install by using pip or easy_install::
        
          pip install django-logentry-admin
        
        Or install from source::
        
            git clone git@github.com:yprez/django-logentry-admin.git
            cd django-logentry-admin
            python setup.py install
        
        To add this application into your project, just add it to your
        ``INSTALLED_APPS`` setting::
        
            INSTALLED_APPS = (
                ...
                'logentry_admin',
            )
        
        
        .. |travis-ci-status| image:: https://travis-ci.org/yprez/django-logentry-admin.svg?branch=master
           :target: http://travis-ci.org/yprez/django-logentry-admin
        
        .. |coverage-status| image:: https://img.shields.io/coveralls/yprez/django-logentry-admin.svg?branch=master
           :target: https://coveralls.io/r/yprez/django-logentry-admin?branch=coveralls
        
        .. |pypi-status| image:: https://pypip.in/version/django-logentry-admin/badge.svg
            :target: https://pypi.python.org/pypi/django-logentry-admin
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
