Metadata-Version: 1.1
Name: django-logentry-admin
Version: 0.1.3
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
        =====================
        
        Add Django LogEntries the the Django admin site.
        
        Allows to view all log entries in the admin.
        
        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',
            )
        
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.6
Classifier: Programming Language :: Python :: 2.7
