Show all LogEntry objects in the Django admin site.
Originally based on: Django snippet 2484
- Django 2.2, 2.1, 2.0, 1.11, 1.10, 1.9, 1.8
- Python 3.7, 3.6, 3.5, 3.4, 2.7
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',
)
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