• Stars
    star
    111
  • Rank 314,510 (Top 7 %)
  • Language
    Python
  • License
    ISC License
  • Created almost 13 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Show all LogEntry objects in the Django admin site

django-logentry-admin

travis-ci coverage requires-io pypi-version

Show all LogEntry objects in the Django admin site.

Originally based on: Django snippet 2484

Supported versions

  • Django 3.2, 3.1, 2.2
  • Python 3.9, 3.8, 3.7, 3.6, 3.5

Installation

Install by using pip or easy_install:

pip install django-logentry-admin

Or install from source:

git clone [email protected]: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',
)

Running tests

Test on all Python / Django versions with tox:

$ pip install tox
$ tox

Or just a specific Django / Python version:

$ tox -e py35-django19

Or run on multiple CPUs in parallel with detox to make it faster:

$ pip install detox
$ detox